重定向的正则表达式,我出错了什么?

时间:2014-11-12 19:39:16

标签: regex .htaccess redirect

我试图重定向一大堆网址,但最后还是以此为借口:

http://www.example.com/events2?type=day;start=2009-07-31%2000:00:00

我们有数百个网址,其中包含我们要重定向到单个网址的参数的变体

http://www.example.com/category/news-events/events/

这是我们设置的重定向,但不起作用:

RewriteCond %{QUERY_STRING}  ^$
RewriteRule ^events2.*$ /category/news-events/events/ [R=301,NC,L]

我们出了什么问题?

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要在{。{1}}行下面的根.htaccess中使用此规则:

RewriteEngine On