Time to get SSL!

Xd6XorR.png

We cool bro :D
 
Oh FFS, had no idea.

Put in a redirect to force HTTPS in your apache config plz :lol:

Code:
RewriteEngine on
RewriteCond %{SERVER_NAME} =rage3d.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]

EDIT: Some resources are still being requested via http and causing mixed-content errors. Chrome will soon be giving users grief with this. Forcing a redirect on httpd should fix this (code above).
 
Last edited:
Chrome, and Edge don't support embedded content on an HTTPS site that links to non HTTPS content. If you tried viewing that in IE11 it should work.
 
Chrome, and Edge don't support embedded content on an HTTPS site that links to non HTTPS content...

That's great and all, except it's an iframe, not an embed, but that doesn't really matter anyway. Puling any resource with HTTP via a secured HTTPS connection resource is no bueno; this is frowned upon in the modern web and rightfully so.
 
Back
Top