Skip to main content

htaccess

Redirect WWW to NO WWW using .htaccess

Posted in

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

If you need more help on the topic feel free to add a comment or create a new post on the Forum

Syndicate content