Redirecting non-www to www with htaccess

Redirecting non www to www with .htaccess

Redirecting non-www to www with .htaccess

If you ever point your www. record to another server you will want to setup a redirect for your domain without www. to point to www.

Edit your .htaccess file and add the following code...

RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*) https://www.%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTPS} off
RewriteRule ^(.*) https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]


This is also useful when using a CDN service such as CloudFlare.

  • 147 Користувачі, які знайшли це корисним

Ця відповідь Вам допомогла?

Схожі статті

I am having problems with my current registrar transferring the domain to you

If you have unlocked the domain with the current registrar, clicked on the confirmation link in...

How do I transfer my domain hosting to Ultra Web Hosting?

You will need to go to your registrar (where you registered your domain name) and modify the...

Clearing DNS Cache

When changing hosting providers or making DNS changes you may want to speed up the process of...

What is domain propagation?

Domain propagation is the process of updating all of the DNS servers around the world with the...

I changed the DNS pointers to your servers but still can't see my site

It can often take up to 48 hours for the DNS zone transfers to replicate to some ISPs and for...