最近我买了主题,现在我遇到了货币问题。
当我切换货币时,我得到了这样的信息:
The requested URL /directory/currency/switch/currency/USD/uenc/aHR0cDovL3ZvdmFuLm5pY2t3bGtlci5jb20v/ was not found on this server.
但如果我回去,我会看到货币发生了变化。
如何防止这种错误" ?
答案 0 :(得分:0)
我找到了解决方案。
我需要从magento的url中删除index.php。
我做到了:
1)系统>>配置>>网络>>搜索引擎优化>>使用Web服务器重写:是
2)系统>>配置>>网络>>安全>>使用安全URL前端:是
3)然后在我的magento安装文件夹下创建.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>
感谢您帮助我。