Mukilan R
Mukilan R

Reputation: 445

Rewrite 'http' into 'https' in url

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

Answers (1)

anubhava
anubhava

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

Related Questions