将一个文件从 http 重定向到 https

将一个文件从 http 重定向到 https

我尝试使用 .htaccess 将一个文件从 http 重定向到 https,但不起作用。奇怪的是,如果我在 URL 末尾添加 /,它就可以正常工作。我做错了什么?

RewriteEngine On
RewriteBase /

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^offers\.html/?$ https://%{HTTP_HOST}/offers.html [R=301,L]

谢谢

相关内容