.HTACCESS 重定向问题:索引.php URL 块之前



我正在尝试实现一个简单的http到https重定向和www到非www。问题是.htaccess将"index.php"放在url slug之前,导致服务器错误。以下是发生的情况:

错误行为:

http://example.com/url-slug -> https://example.com/index.php/url-slug

期望的行为:

http://example.com/url-slug -> https://example.com/url-slug

注意:我希望所有查询都重定向到主目录中的index.php页面,除非服务器上存在请求的文件。我想在不更改浏览器中的 url 的情况下实现这一点,这会导致服务器崩溃。

(目标:www -> non-www & http -> https(

当前。HTACCESS 设置:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

我做错了什么?

您的http to https301 重定向应位于其他内部重写规则的顶部

RewriteEngine On
#http to https
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#www to non-www
RewriteCond %{HTTP_HOST} ^www.(.+)$
RewriteRule (.*) https://%1%{REQUEST_URI} [NE,L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

请确保在测试此更改之前清除浏览器缓存。

相关内容

  • 没有找到相关文章

最新更新