Решено Проблема с редиректом https

Статус
В этой теме нельзя размещать новые ответы.

qwers

Заблокирован
Сообщения
315
Реакции
71
Баллы
3,330
В .htaccess указано, но при переходе не перенаправляет на .
А при переходе перенаправляет на .
Задача- сделать перевод с на Заранее спасибо!

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{HTTPS} ^ [NC]
RewriteRule ^(.*)$ [R=301,L]

# If you are having problems with the rewrite rules, remove the "#" from the
# line that begins "RewriteBase" below. You will also have to change the path
# of the rewrite to reflect the path to your XenForo installation.
#RewriteBase /xenforo

# This line may be needed to enable WebDAV editing with PHP as a CGI.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</IfModule>
 
Вот правильный конфиг -

RewriteEngine on

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ [R=301,L]

RewriteCond %{HTTPS} !on
RewriteRule (.*) [R=301,L]
 
Последнее редактирование:
Статус
В этой теме нельзя размещать новые ответы.
Современный облачный хостинг провайдер | Aéza
Назад
Сверху Снизу