开发者

Forward www subdomain to domain

开发者 https://www.devze.com 2023-02-13 03:31 出处:网络
How do I auto forward/turn/convert (whatever the correct term is) URLs entered as www.example.com or www.example.com/blah/blah to example.com or example.com/blah/blah? I basically want to pu开发者_运维

How do I auto forward/turn/convert (whatever the correct term is) URLs entered as www.example.com or www.example.com/blah/blah to example.com or example.com/blah/blah? I basically want to pu开发者_运维知识库sh anything coming in with the www subdomain to forward to the domain including the paths (if any).


In your htaccess file use this

RewriteEngine On    
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]    
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
0

精彩评论

暂无评论...
验证码 换一张
取 消