标签: php regex wordpress .htaccess
根据下面的重定向,我怎样才能让它从2007年到2010年重定向?
RedirectMatch 301 ^/2010/([0-9]+)/(.*)$ http://archive.website.com/2010/$1/$2
答案 0 :(得分:1)
您可以尝试:
RedirectMatch 301 ^/(200[7-9]|2010)/([0-9]+)/(.*)$ http://archive.website.com/$1/$2/$3