Apache 网站301重定向

1. Apache模块 开启rewrite

2..htaccess文件中

<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^XXXkuan.cn$ [OR]
RewriteCond %{HTTP_HOST} ^XXXwang.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.xxxkuan.cn$ [NC]
RewriteRule ^(.*)$ http://www.xxxwang.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] </IfModule>
上一篇:asp.net 4.0+ webform 程序中集成mvc4混合应用


下一篇:C#微信公众号开发系列教程六(被动回复与上传下载多媒体文件)