This is my first post about htaccess.In this am going to explain how to redirect Non WWW website url to WWW website url using htaccess.
Htaccess Code
RewriteEngine On //ON rewrite Engine
RewriteCond %{HTTP_HOST} !^www\. //Write Condition for want you want to redirect
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] //Rule for redirect
RewriteCond %{HTTP_HOST} !^www\. //Write Condition for want you want to redirect
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] //Rule for redirect
