【发布时间】:2012-10-20 13:46:57
【问题描述】:
我有一个站点http://www.mysite.com/blog/category/post/,我需要将它重定向到http://www.mysite.com/category/post,即我想从我的URL 中删除blog。有没有办法在 .htaccess 中使用永久重定向?
非常感谢!
【问题讨论】:
标签: regex .htaccess mod-rewrite redirect
我有一个站点http://www.mysite.com/blog/category/post/,我需要将它重定向到http://www.mysite.com/category/post,即我想从我的URL 中删除blog。有没有办法在 .htaccess 中使用永久重定向?
非常感谢!
【问题讨论】:
标签: regex .htaccess mod-rewrite redirect
通过httpd.conf启用mod_rewrite和.htaccess,然后把这段代码放到你.htaccess的DOCUMENT_ROOT目录下:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^blog(/.*|)$ $1 [L,R=301,NC]
【讨论】: