Liz Reeder
Liz Reeder

Reputation: 155

Redirect single page http to https

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?

Upvotes: 14

Views: 24532

Answers (2)

Tejas Darji
Tejas Darji

Reputation: 1

I have tried this and it works for me:

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

Upvotes: -3

Oussama Jilal
Oussama Jilal

Reputation: 7739

Try this :

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

Upvotes: 20

Related Questions