我需要一些关于这个错误的支持,我已经用谷歌搜索了它,但似乎找不到任何可以解决我的问题的东西。
当我尝试从我的 index.php 页面重定向到同一服务器上的另一个页面时,我在 Firebug 中收到此错误。它还不断刷新(30 多次)并且无法完全加载。
Failed to load source for: https://www.example.com/
在索引页面中:
<?php
header('Location:index2.php');
exit;
?>
而 index2.php 我没有 PHP。
.htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
任何帮助,将不胜感激。谢谢