I would like to redirect my site from www to a non-www, but without "main page".
Eg. www.domain.com or www.domain.com/ do nothing, but www.domain.com/everything-else should redirect to domain.com/everything-else
Why the code below redirect also "main page"?
RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
RewriteCond %{REQUEST_URI} !^$
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]
