htaccess redirect - advice needed
Posted: Wed Aug 14, 2024 7:29 pm
As i went further into seo, i realized that people could assess my sites from multiple variants. So I decided to create a htaccess file to redirect everything from http://www, http://, and https:// to go to https://www.
I've noticed most large sites (apple, microsoft, google, facebook, etc) force to https and www.
I'm seeing a lot of different codes that seem to achieve the same thing.
This is what i'm currently using ...
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^(.*)$ "https\:\/\/www\.domain\.com\/$1" [R=301,L]
I've also seen it suggested this way:
<IfModule mod_rewrite.c>
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]
</IfModule>
Let me know your thoughts and what you use
I've noticed most large sites (apple, microsoft, google, facebook, etc) force to https and www.
I'm seeing a lot of different codes that seem to achieve the same thing.
This is what i'm currently using ...
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^(.*)$ "https\:\/\/www\.domain\.com\/$1" [R=301,L]
I've also seen it suggested this way:
<IfModule mod_rewrite.c>
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]
</IfModule>
Let me know your thoughts and what you use
