HTACCESS | Redirect naked domain to WWW - [NON WWW to WWW with htaccess]
Here is how you can redirect your named domain address to www Using .htaccess
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Read Article →