Hướng dẫn redirect tên miền từ www sang non-www và ngược lại
Các máy chủ web của SuperHost đều được hỗ trợ mod_rewrite. Vì vậy quý khách có thể sử dụng tập tin .htaccess để chuyển hướng tên miền dễ dàng:
1. Chuyển hướng từ www sang non-www:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^my-domain.com$ [NC]
RewriteRule ^(.*)$ http://my-domain.com/$1 [R=301,L]
2. Chuyển hướng từ non-www sang www:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
3. Code chuyển hướng cho nhiều tên miền cùng 1 lúc từ tất cả về https://domain.com
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]
4. Code chuyển hướng cùng lúc nhiều domain từ non-www sang www:
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://www.%1%{REQUEST_URI} [L,NE,R=301]
SuperHost Tech