does anyone know how to redirect from www to non-www for example: Request: www.domain.com/blabla Redirect: domain.com/blabla not just Request: www.domain.com/blabla Redirect: domain.com
Hello Try this RewriteCond %{HTTP_HOST} ^www|subdomain1|subdomain2\.domain\.com RewriteRule ^(.*)$ http://domain.com/$1 [R=permanent,L]
domain.com/.htaccess Options +FollowSymLinks RewriteEngine On RewriteCond %{HTTP_HOST} ^www\. RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] Code (markup):