.htaccess域重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess域重定向相关的知识,希望对你有一定的参考价值。

  1. ###### always access from www and redirect multiple doamins to one
  2.  
  3. rewriteCond %{http_host} ^domain.com$ [OR]
  4. rewriteCond %{http_host} ^domain.org$ [OR]
  5. rewriteCond %{http_host} ^www.domain.org$ [OR]
  6. rewriteCond %{http_host} ^subdomain.domain.org$ [OR]
  7. rewriteCond %{http_host} ^www.subdomain.domain.org$ [NC]
  8. rewriteRule ^(.*)$ http://www.domain.com/$1 [r=301,L]
  9.  
  10. ######always access from non-www and redirect multiple doamins to one
  11.  
  12. rewriteCond %{http_host} ^www.domain.com$ [NC]
  13. rewriteRule ^(.*)$ http://domain.com/$1 [r=301,L]

以上是关于.htaccess域重定向的主要内容,如果未能解决你的问题,请参考以下文章

301 使用 .htaccess 从旧域重定向到新域

.htaccess域重定向

Htaccess 规则将域重定向到 index.html

.htaccess 将域重定向到子目录而不更改 URL

.htaccess:将主域重定向到https:// www,子域重定向到https://(不带www)

在 .htaccess 中使用 HTTPS 将旧域重定向到新域