Answers for "static site redirect http to https htaccess"

PHP
0

redirect http to https htaccess

#htaccess

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
Posted by: Guest on August-27-2020

Code answers related to "static site redirect http to https htaccess"

Browse Popular Code Answers by Language