Quantcast
Channel: PHP Blog Spot
Viewing all articles
Browse latest Browse all 42

Htaccess Redirect www to non-www

$
0
0

I would like to redirect www.example.com/xyz.html to example.com/xyz.html. The following htaccess code makes this happen. But if we need to do this for separate http and https: RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] RewriteCond %{HTTPS}

The post Htaccess Redirect www to non-www appeared first on PHP Blog Spot.


Viewing all articles
Browse latest Browse all 42

Trending Articles