Answer the question
In order to leave comments, you need to log in
How to make to make the site open only without www?
How to make to make the site open only without www ? For example, when accessing the site www.domain.com, it should open domain.com (without www)
Answer the question
In order to leave comments, you need to log in
For apache (you need to put it in .htaccess):
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.ru$ [NC]
RewriteRule ^(.*)$ http://example.ru/$1 [R=301,L]
server {
listen 80;
server_name www.domain.ru;
return 301 http://domain.ru$request_uri;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question