home, PHP, updated

How to redirect non www to www?

Redirection from non www to www is beneficial for SEO. You can add following code in to your .htaccess file.


RewriteEngine On
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]

Related Articles

post a comment