Redirect single page http to https

Liz Reeder picture Liz Reeder · Apr 22, 2013 · Viewed 24.2k times · Source

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?

Answer

Oussama Jilal picture Oussama Jilal · Apr 22, 2013

Try this :

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