.htaccess域重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess域重定向相关的知识,希望对你有一定的参考价值。
###### always access from www and redirect multiple doamins to one rewriteCond %{http_host} ^domain.com$ [OR] rewriteCond %{http_host} ^domain.org$ [OR] rewriteCond %{http_host} ^www.domain.org$ [OR] rewriteCond %{http_host} ^subdomain.domain.org$ [OR] rewriteCond %{http_host} ^www.subdomain.domain.org$ [NC] rewriteRule ^(.*)$ http://www.domain.com/$1 [r=301,L] ######always access from non-www and redirect multiple doamins to one rewriteCond %{http_host} ^www.domain.com$ [NC] rewriteRule ^(.*)$ http://domain.com/$1 [r=301,L]
以上是关于.htaccess域重定向的主要内容,如果未能解决你的问题,请参考以下文章