当我不使用https打开它时,我的网站会重定向到其他网站。可能是什么问题?
https
对于Linux cPanel
如果您是网站的管理员,请登录并修改位于根目录中的.htaccess文件
.htaccess
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Refer here