强制https时,递归.htacess文件重定向过多

时间:2019-07-17 14:28:34

标签: apache .htaccess codeigniter https

我有一个旧版代码点火器站点,该站点的所有项目代码都位于code/文件夹中,并且在项目路径中有一个index.php文件,该文件加载了code/index.php

这是正确的,但是现在我需要强制使用https,并且我尝试附加此规则,但是它不能正常工作,因为浏览器表示该网站必须进行多次重定向

RewriteCond %{HTTP_HOST} !=localhost
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

这是服务器上文件的内容

index.php
.htaccess
/code/index.php
/code/.htaccess

.htaccess

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]

index.php

define('CMSPATH', 'code/');
include 'code/index.php';

/code/.htaccess

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]

/code/index.php

Codeigniter主index.php文件

0 个答案:

没有答案