so i have a SSL certificate and when i type my full url, https://orexr.wtf, it shows that the website is secure but when i just search “orexr.wtf” it just shows the unsecure site i’m just wondering if there’s a way to fix this and show the secure
You need to setup 301 redirect in .htaccess file. Put this code:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://orexr.wtf/$1 [R,L]
6 Likes
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.