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"));
URLを挿入するときも
http://mydomain.com/magento/index.php/customer/account/login
ブラウザで直接動作します。しかし、ここでは404エラーページにリダイレクトしています。
Magentoまたはその他の構成のファイルに変更を加える必要がありますか?