Answers for "serve php https in localhost"

PHP
4

simple localhost php

1) cd ~/public_html
2) php -S localhost:8000
Posted by: Guest on May-30-2020
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

Browse Popular Code Answers by Language