0 $0.00
Redirect URLs to www.
Category: X-Cart Snippets
Added:
To avoid duplicate URLs, use this to redirect non-www. URLs to www. Add this code to your root .htaccess file... RewriteCond %{HTTP_HOST} ^%{HTTP_HOST} [NC] RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L] |