Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 698
Liz Reeder Avatar asked Apr 22 '13 17:04

Liz Reeder


1 Answers

Try this :

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^secureform\.html$ https://www.example.com/secureform.html [L,R=301]
like image 176
Oussama Jilal Avatar answered Nov 14 '22 13:11

Oussama Jilal