2011-03-10 52 views
1

我将我的博客从example.com移至example.com/blog。我现在在example.com上有一个启动页面。我希望像example.com/2011/example-post这样的旧博客帖子请求重定向到example.com/blog/2011/example-post;但请求example.com允许不重定向。htaccess只重定向子目录请求(不是TLD请求)

回答

1

试试这个:

RewriteEngine On 
RewriteRule ^([0-9]{4}/.+)$ /blog/$1 [R=301,NC] 

这将重定向所有具有数字4个位数(年)和斜线的东西后,所以一切都必须在example.com会像正常的网页example.com/about.html

+0

谢谢!那就是诀窍。 – drew 2011-03-10 22:16:02