只有主页有此问题。它说页面没有正确重定向我的index.php有以下代码
<?php $root = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST'] . '/'; echo '<META http-equiv="refresh" content="0;URL='.$root.'">'; ?>
我的.htaccess有这段代码:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.example.net/$1 [R=301,L]
RewriteCond %{http_host} ^example.net [NC]
RewriteRule ^(.*)$ https://www.example.net/$1 [R=301,L]
请帮忙
答案 0 :(得分:1)
您正在将元刷新调用到网站的根目录。所以这将在主页/索引页面上创建重定向循环。