我正在本地机器上为 Magento 安装 B2B 扩展,没有任何问题。但是在对客户端服务器执行相同操作时,我收到以下错误:
404 Not Found
The server can not find the requested page:
mydomain.com/errors/report.php?id=264218583315&skin=default (port 80)
Please forward this error screen to mydomain.com's WebMaster.
我需要在哪里进行更改?我在 Observer.php 文件中替换了以下第 33 行。
Mage::app()->getResponse()->setRedirect(Mage::helper('adminhtml')->getUrl("customer/account/login"));
和
Mage::app()->getResponse()->setRedirect("http://mydomain.com/magento/index.php/customer/account/login"));
当我插入网址时
http://mydomain.com/magento/index.php/customer/account/login
直接在浏览器中它工作正常。但这里它重定向到 404 错误页面。
我是否需要对 Magento 中的任何文件或其他配置进行一些更改?