Redirect WWW to NO WWW using .htaccess

Inspired by No-www.org 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 ^(.*)$ http://example.com/$1 [L,R=301]

Technology: 

Add new comment