我需要重定向所有这些网址
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]
之后)
重定向工作正常,但此规则已阻止后端中的某些功能:系统不会保存类别,产品等方面的任何更改。
我该如何解决?