我有一个旧版代码点火器站点,该站点的所有项目代码都位于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
文件