Magento登录页面和注册页面不会收取错误500

时间:2014-06-02 17:59:39

标签: php magento

您好我的magento url登录页面和注册页面有问题,我在数据库表core_config_data上更改了新域的默认URL,现在它出现了问题,因为我无法进入登录URL页面并在这里注册我把实时链接,谢谢!我希望任何人都可以帮助我,我不知道为什么它不起作用,我需要做出其他改变?谢谢 http://masluzz.panamerik.net/customer/account/login

1 个答案:

答案 0 :(得分:0)

Sara是重写问题,如果您使用index.php尝试此操作,则http://masluzz.panamerik.net/index.php/customer/account/login正确打开。

检查htaccess重写是否有效 在htaccess中添加代码

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

更多详情How to remove index.php from URLs?