How to always remove WWW from a url with mod_rewrite?

apache, mod-rewrite

Solution

Here’s a more generalized solution:

RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]

Problem

I'm using the following to try and remove WWW from the url: ``` RewriteCond %{HTTP_HOST} ^example.com$ [NC] RewriteRule (.*) http://example.com$1 [R=301] ``` But for some reason it doesn't work. Any suggestions?

Original source

Related problems