Portal Home > Knowledgebase > Scripting, Component & Database > HTAccess > How to redirect domain.com to www.domain.com?
* Please insert the following under the .htaccess file
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
Add to Favourites
Print this Article