Answer the question
In order to leave comments, you need to log in
Make a redirect from https://mysite.ru/ to https://www.mysite.ru/ 1C?
Hello.
How can I redirect from https://mysite.ru/ to https://www.mysite.ru/.
The site works on https://www.mysite.ru/, but when you try to go to the site on https://mysite.ru/ it gives an error,
403 Forbidden
Access denied.
In .htaccess
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://www.mysite.ru/$1 [R=301,L]
Answer the question
In order to leave comments, you need to log in
RewriteCond %{HTTP_HOST} !^www\.(.*) [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question