.htaccess实现二级域名301重定向

RewriteEngine On

RewriteCond %{HTTP_HOST} ^www.shundecity.com [NC]
RewriteRule ^news/today/?(.*)$ http://news.shundecity.com/$1 [R=301,L]

 

上例展示 www.shundecity.com根目录下的 news目录下的today文件夹里面所有文件链接都跳转到news.shundecity.com 这个域名上!!