> Original message text:
> From:
> Андрей - 20/06 - 22:14:38
> Subject:Убрать редирект с http://WWW. на http://
> -----------------
> При попытке обратиться к сайту по адресу http://WWW.site.com происходит редирект на http://site.com. Как при помощи .htaccess убрать этот редирект? То есть чтобы при обращении к http://WWW. не перекидывало на http:// и наоборот, с http:// не перенаправляло на ttp://WWW.
> Спасибо!
>
From: sasha- - 06/08 - 06:32:29
Subject:Убрать редирект с http://WWW. на http://
-----------------
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# uncomment and adapt the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]