Https link giving error

Status
Not open for further replies.

scribb11

New Member
Messages
20
Reaction score
2
Points
3
Hello, my website is scribblesitehtml.x10host.com & I have paired it with the url html.scribblenrd.com & when I go to https://html.scribblenerd.com it says “this site can’t provide a secure connection... when you just enter “html.scribblenerd.com” into chrome, it goes to the https site and gives you that error... how would I convert https into http?
 

lylex10h

Active Member
Messages
982
Reaction score
71
Points
28
Try clearing your cache (or incognito window). html.scribblenerd.com just stays at http://html.scribblenerd.com/ for me in Chrome.

If you want to do this on the server level use with a .htaccess file with:
Code:
# Redirect HTTPS to HTTP
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
 
Status
Not open for further replies.
Top