Answers for "how to add https to a page in php"

PHP
0

make php website https

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
Posted by: Guest on December-11-2020

Code answers related to "how to add https to a page in php"

Browse Popular Code Answers by Language