B
B
bbaggins2017-06-03 13:46:17
htaccess
bbaggins, 2017-06-03 13:46:17

How to set up a correct www redirect?

Hello!
Tell me how to set up a redirect from www while maintaining a further link?
A record of this type redirects all requests to the main one:

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

How to keep nesting?
from where:
ввв.мойсайт.рф/раздел/материал
to:
мойсайт.рф/раздел/материал

Answer the question

In order to leave comments, you need to log in

1 answer(s)
B
bbaggins, 2017-06-03
@bbaggins

Solution:
RewriteCond %{HTTP_HOST} ^www\.mysite\.ru$ [NC]
RewriteRule ^(.*)$ mysite.ru/$1 [R=301,L]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question