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 h
I have tried this and it works for me:
Redirect permanent /secure https://www.example.com
Try this :
RewriteEngine on RewriteCond %{HTTPS} off RewriteRule ^secureform\.html$ https://www.example.com/secureform.html [L,R=301]