I would like to redirect www.example.com to example.com. The following htaccess code makes this happen: Here are the rules to redirect a www URL to no-www: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
The post Generic htaccess redirect www to non-www appeared first on PHP Blog Spot.