我已经读过这个:Multiple 301 Redirect For Multiple Pages or URL
但我的网址包含URL中的时间戳(该死的Wordpress),我需要手动重定向每个。我将博客从Wordpress迁移到新的Expressionengine安装。
例如:我需要http://iwantrest.com/2014/04/29/counting-the-cost-of-justice/转发到http://iwantrest.com/blog/post/counting-the-cost-of-justice/
以下不会起作用,但由于时间戳,我无法使地图模块化。
Redirect 301 2014/04/29/counting-the-cost-of-justice/ http://iwantrest.com/blog/post/counting-the-cost-of-justice/
任何帮助?
答案 0 :(得分:0)
您需要使用RedirectMatch
来获得其正则表达式功能:
RedirectMatch 301 ^/[0-9]{4}/[0-9]{2}/[0-9]{2}/([^/]+)/?$ /blog/post/$1/