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.

  1. RewriteEngine On
  2. RewriteBase /
  3. RewriteCond %{HTTP_HOST} !^example.com$ [NC]
  4. RewriteRule ^(.*)$ <a href="http://example.com/">http://example.com/</a>$1 [L,R=301]
Technology: 

Add new comment