Home › Forums › Other › 301 Redirect http to https same page name › Reply To: 301 Redirect http to https same page name
June 9, 2017 at 6:21 am
#255755
Participant
Maybe this is what you’re looking for?
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
For more help, try Googling “redirect http to https htaccess”.