S
S
Shohruh Uz2014-08-30 09:54:46
Web servers
Shohruh Uz, 2014-08-30 09:54:46

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

1 answer(s)
R
rockstar91, 2014-08-30
@rockstar91

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]

For nginx:
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 question

Ask a Question

731 491 924 answers to any question