我在htaccess中有以下代码

Options +FollowSymLinks -MultiViews
RewriteEngine on
RewriteBase /films/

RewriteCond %{REQUEST_METHOD} =POST
RewriteRule ^ - [L]

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/films/$1 [R=301,L]


我希望它自动将网址重定向到https
但这不是重定向。我尝试改变

RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/films/$1 [R=301,L]




RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/films/$1 [R=301,L]

最佳答案

要重定向到https,可以在/films/.htaccess中使用以下重定向:

Options +FollowSymLinks -MultiViews
RewriteEngine on
RewriteBase /films/
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.example.com/films/$1 [R=301,L,NE]


在测试此重定向之前,请清除浏览器缓存。

10-06 12:35