logo

How to redirect with www? Print

  • 0

How to redirect with www??

 

Please use any of the below coding in your .htaccess file to redirect your domain to www

 

 

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

 

 

 


RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule (.*) http://www.example.com$1 [R=301,L]

 

NOTE: Be sure to replace www.example.com with your actual domain name.

 

 

If still you are Facing any issue Please Click Here to raise a ticket to our Support team


Was this answer helpful?
Back