使用https打开时,网站会重定向到其他网站

问题描述 投票:-1回答:1

当我不使用https打开它时,我的网站会重定向到其他网站。可能是什么问题?

dns cross-domain http-redirect
1个回答
0
投票

对于Linux cPanel

如果您是网站的管理员,请登录并修改位于根目录中的.htaccess文件

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Refer here

© www.soinside.com 2019 - 2024. All rights reserved.