14

我正在尝试使用 .htaccess 将单个页面从 http 重定向到 https,但我不断收到重定向循环错误。

代码:

Redirect /secureform.html https://www.example.com/secureform.html

但是,我不断收到“此网页的重定向太多”错误。我如何防止这种情况发生?

4

2 回答 2

20

尝试这个 :

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^secureform\.html$ https://www.example.com/secureform.html [L,R=301]
于 2013-04-22T17:24:40.680 回答
-3

我已经尝试过了,它对我有用:

Redirect permanent /secure https://www.example.com
于 2014-02-01T15:44:30.593 回答