这是问题所在;用我自己的网站替换了Magento网站。我需要重定向类似的东西:
http://example.com/store/index.php/figures/something/somethingelse.html?dest=products&prod_id=4625
要:
http://example.com/store/index.php?dest=products&prod_id=4625
任何建议都会非常感激!
答案 0 :(得分:0)
您可以在.htaccess:
的顶部使用此规则RewriteEngine On
RewriteRule ^(store/index\.php)/[^/]+/.+$ /$1 [L,NC,NE,R=302]