Reputation: 445
how to use https://localhost/
instead of http://localhost/
?
I am using WAMPSERVER 2.
Is there any way to rewrite http into https...?
Upvotes: 1
Views: 157
Reputation: 785196
Yes there is a way. Place this rule in your root .htaccess:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R=301,L]
Upvotes: 1