我已经重定向到网站的主页:
RewriteEngine On
RewriteRule ^$ index.php [QSA]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
但是,如果您键入domain.com
,那么重定向将是example.com/index.php
,但是我需要立即重定向到https://example.com/index.php
答案 0 :(得分:0)
使用此htaccess代码
RewriteEngine On
RewriteRule ^$ index.php [QSA]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}