【发布时间】:2015-05-02 11:39:36
【问题描述】:
我需要帮助。我的商店在 Magento CE 1.9 上运行,我想在 Magento 中的所有网址中添加斜杠,或者摆脱它。添加斜杠不起作用,因为某些图像和其他链接文件不想加载,所以我在我的 .htaccess 文件中添加了这个,以摆脱斜杠:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} !^\.localhost$ [NC]
RewriteRule ^(.+[^/])/$ http://%{HTTP_HOST}/$1 [R=301,L,NE]
斜线消失了,网站正在正确呈现。但是,现在我注意到我的产品评论根本没有注册。客户可以点击链接写评论,但是,点击提交按钮后页面刷新,但没有消息提交评论成功。评论也不会在管理面板中注册。 也许其他一些模块也不能正常工作,但我还是没有注意到。
如果没有上面的代码,链接是这样的: http://xxxxxxx.com/review/product/list/id/1/category/3#review-form
这就是链接在上面的代码中的样子: http://xxxxxxx.com/review/product/list/id/1/category/3#review-form
【问题讨论】:
标签: .htaccess magento magento-1.9 review trailing-slash