Hello, can anyone tell me how to redirect my non-www domain to www domain, for example if a user typ http://domain.com it should automatically redirect to http://www.domain.com any help is appreciated
.htaccess RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www.domainhere.com$ [NC] RewriteRule ^(.*)$ http://www.domainhere.com/$1 [L,R=301] Code (markup): Replace domainhere.com with your domain name.