2013-04-22 117 views
11

我想重定向單個頁面從http到https使用.htaccess,但我不斷收到重定向循環錯誤。重定向單頁http到https

代碼:

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

不過,我不斷收到一個 「此網頁重定向過多」 的錯誤。我如何避免這種情況發生?

回答

16

試試這個:

RewriteEngine on 
RewriteCond %{HTTPS} off 
RewriteRule ^secureform\.html$ https://www.example.com/secureform.html [L,R=301] 
+2

,完美的工作!非常感謝! – 2013-04-22 17:36:32

+1

@LizReeder歡迎來到SO。如果此答案解決了您的問題,請考慮[接受](http://meta.stackexchange.com/a/5235)。 – 2013-04-22 20:37:56

-3

我已經試過這和它的作品對我來說:

Redirect permanent /secure https://www.example.com