How to remove www from your URL with mod_rewrite

2010/11/15 11:30
阅读数 112
source link: http://yoast.com/how-to-remove-www-from-your-url-with-mod_rewrite/ I got a hit today for the following search query: how do you get rid of the www in url . Here’s the code to 301 redirect the www version of your site to the non-www version using Apache’s mod_rewrite: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.example.com$ [NC] RewriteRule ^(.*)$ http://example.com/$1 [R=301,L] Adding the [...]
展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
1 收藏
0
分享
返回顶部
顶部