Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other 301 Redirect http to https same page name Reply To: 301 Redirect http to https same page name

#255755
Beverleyh
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”.