开发者

Apache: How redirect from domain.com to www.domain.com

开发者 https://www.devze.com 2023-02-19 03:37 出处:网络
Apache: How redirect from domain.com to www.domain.com? I dont want my users who type domain w/o www to be redicrect to the main www.domain

Apache: How redirect from domain.com to www.domain.com?

I dont want my users who type domain w/o www to be redicrect to the main www.domain

how to do it开发者_如何学Python and where? local .htaccess or the apache config (I have Ubuntu server)

thanks


.htaccess:

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

More info: http://enarion.net/web/htaccess/redirect-www-and-no-www/

0

精彩评论

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