我正在尝试使用.htaccess将单个页面从http重定向到https,但我不断收到重定向循环错误。
代码:
Redirect /secureform.html https://www.example.com/secureform.html
但是,我不断收到“此网页有太多重定向”错误。我如何防止这种情况发生?
答案 0 :(得分:19)
试试这个:
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^secureform\.html$ https://www.example.com/secureform.html [L,R=301]
答案 1 :(得分:-3)
我试过这个,它对我有用:
Redirect permanent /secure https://www.example.com