在Magento中重定向index.php urls会导致后端出现问题

时间:2017-05-02 13:39:09

标签: apache .htaccess magento mod-rewrite

我需要重定向所有这些网址

https://www.example.com/index.php/la-roche-posay-acqua-micellare-ultra-pelle-sensibile-100ml.html 

新的非index.php:

https://www.example.com/la-roche-posay-acqua-micellare-ultra-pelle-sensibile-100ml.html

我在.htaccess中添加了这一行:

RewriteRule ^index.php/(.*)$ /$1 [R=301,NC,L]

(在RewriteRule .* index.php [L]之后)

重定向工作正常,但此规则已阻止后端中的某些功能:系统不会保存类别,产品等方面的任何更改。

我该如何解决?

0 个答案:

没有答案