Inspired by
here's how to do a simple redirect from the www version to the non www version of the website.
- RewriteEngine On
- RewriteBase /
- RewriteCond %{HTTP_HOST} !^example.com$ [NC]
- RewriteRule ^(.*)$ <a href="http://example.com/">http://example.com/</a>$1 [L,R=301]
Add new comment