Magento:确认页面的 url 是什么?

Magento: What is the url to the confirmation page?

我的网站上添加了一些联盟跟踪代码。为了使跟踪工作,我需要向附属公司提供确认页面 url。

我正在使用 Magento,我不确定版本,但它已经几年没有更新了。我需要知道您页面的订单确认 page/thank url 是什么。谁能帮我解决这个问题?

我认为它类似于 www.mysite.com/index.php/success

提前谢谢你。

这是你的成功 url : www.mysite.com/index.php/checkout/onepage/success/

您可以在管理底部找到 magento 版本。

success.phtml url:
app/design/frontend/<yourPackage>/<yourTheme>/template/checkout/success.phtml

如果 success.phtml 文件不存在,则在以下位置查找:
app/design/frontend/base/default/template/checkout/ path and copy success.phtml 文件到 app/design/frontend/yourPackage/yourTheme/template/checkout/
在此处编辑文件。

要检查您的代码,最简单的方法就是创建一个新的测试订单。创建后,您将被重定向到成功页面。

您网站的订单成功 URL 将是 www.mysite.com/index.php/checkout/onepage/success(这是由于单页控制器在结帐模块中的成功操作)

如果您从系统 -> 配置 -> Web 中启用了设置 使用 Web 服务器重写(在搜索引擎优化下),那么您只需使用 www.mysite.com/checkout/onepage/success 作为您的订单确认 URL.