Randall
Active Member
Sometimes there are questions that some people want to show their site only in www. version not without the www.
You can use the code below in your .htaccess file and it will redirect to www. version site.
You can use the code below in your .htaccess file and it will redirect to www. version site.
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]