复杂的htaccess重定向

时间:2014-09-15 16:06:25

标签: regex apache .htaccess mod-rewrite redirect

这是问题所在;用我自己的网站替换了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

任何建议都会非常感激!

1 个答案:

答案 0 :(得分:0)

您可以在.htaccess:

的顶部使用此规则
RewriteEngine On

RewriteRule ^(store/index\.php)/[^/]+/.+$ /$1 [L,NC,NE,R=302]