Upgrading my hosting to include https

Hello
I want to upgrade my site


To be https. How do I do this?
Thanks

Hi @andrewvharris!

Your *.000webhostapp.com site already supports HTTPS.

All you have to do is access it over HTTPS: https://truro-penwith.000webhostapp.com/ :wink:


If you want to make this process automatic, please add the following code to /public_html/.htaccess (if such file does not exist, please create one):

RewriteEngine on
RewriteCond     %{SERVER_PORT} ^80$
RewriteRule     ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
1 Like