htaccess重写多个通配符

时间:2014-03-04 03:17:43

标签: .htaccess rewrite

我有多个目录,我需要将文件重定向到同一个位置。

例如:

www.mysite.com/news/1998/1998a.htm
www.mysite.com/news/1998/1998b.htm
www.mysite.com/news/1999/1999a.htm
www.mysite.com/news/1999/1999b.htm
...

其中有250多个。似乎应该有一种缩短的方法 如何编写重写规则来捕获目录news中的所有文件和文件夹?

1 个答案:

答案 0 :(得分:1)

  

如何编写重写规则来捕获目录新闻中的所有文件和文件夹?

您可以使用此重写规则:

RewriteEngine On

RewriteRule ^news/((?:1989|199[0-9]|200[0-9]|201[0-4])/.+)$ /new/$1 [L,NC,R]