根据关键字匹配重定向到某个URL(htaccess)

时间:2014-07-22 13:37:45

标签: apache .htaccess redirect rewrite

我想重定向来人:

http://website.com/index.php/m-p OR any other page after m-p/<any>

为:

http://website.com/index.php/cs

帮助我!

1 个答案:

答案 0 :(得分:1)

解决了自己。我不确定这是否完全正确或者应该以这种方式完成,但它符合我的要求 -

RewriteRule ^(.*)/m-p$ http://website.com/index.php/cs [R,L]
RewriteRule ^(.*)/m-p/(.*)$ http://website.com/index.php/cs [R,L]

专家可以指导。

由于