https: How to activate?

Sami Jalal

Well-known member
How to activate https, or SSL certificate.. ? Is that related to hosting or can i get it by myself??

564.webp


:)
 
Last edited:
I think it's something you can buy from your web host. I'm not sure how you yourself would setup HTTPS, though it might be possible.
 
If using cPanel, get a cert from any of the providers (your hosting provider may sell them but I get mine from NameCheap) and then install it, then you will need to configure the software to use SSL and also rewrites in .htaccess to force http to https.
 
Need to add this code to .htaccess file

Code:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Edit: But the problem still here when entering CPanel
 
Last edited:
Top Bottom