Redirect single page http to https

2019-01-19 11:33发布

I'm trying to redirect a single page from http to https using .htaccess, but I keep getting a redirect loop error.

Code:

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

However, I keep getting a "this webpage has too many redirects" error. How do I keep this from happening?

2条回答
成全新的幸福
2楼-- · 2019-01-19 12:10

Try this :

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^secureform\.html$ https://www.example.com/secureform.html [L,R=301]
查看更多
forever°为你锁心
3楼-- · 2019-01-19 12:12

I have tried this and it works for me:

Redirect permanent /secure https://www.example.com
查看更多
登录 后发表回答