You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
500 B
14 lines
500 B
<IfModule mod_rewrite.c>
|
|
# Редирект: ...// -> .../
|
|
RewriteCond %{REQUEST_URI} (.*)\/\/$
|
|
RewriteRule ^(.*)$ https://%{HTTP_HOST}/%1/ [R=301,L]
|
|
|
|
# Редирект: с www -> без www
|
|
RewriteCond %{HTTP_HOST} ^www\.(.*)$
|
|
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
|
|
|
|
# Редирект: HTTP -> HTTPS
|
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
|
</IfModule> |