.htaccess file is used for webpage redirection. Here is the code snippet to redirect users to access the site without www and vice-versa.
301 Redirect www to non-www: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.hscripts.com$ [NC] RewriteRule ^(.*)$ http://hscripts.com/$1 [L,R=301]
301 Redirect Non www to www: RewriteEngine on RewriteCond %{HTTP_HOST} ^hscripts.com [NC] RewriteRule ^(.*)$ http://www.hscripts.com/$1 [R=301,L]
|