Remove www for urls
Posted: Sat Feb 21, 2015 9:33 am
What is the correct way in vestcp to redirect requests for www.example.com to example.com?
Code: Select all
RewriteEngine on
# remove 'www.' from URLs
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]