https not working properly
Permalink
Hello
I've been trying to make https my default rather than http. But I have what I think is a different issue.
Both sites are currently available, but https is missing styling and images are not showing.Any ideas?
http://gotimetrekkers.com
http://gotimetrekkers.com
Cheers
I've been trying to make https my default rather than http. But I have what I think is a different issue.
Both sites are currently available, but https is missing styling and images are not showing.Any ideas?
http://gotimetrekkers.com
http://gotimetrekkers.com
Cheers
Probably because its trying to load things over http and when browsed via https the assets are blocked from being loaded via http.
You'll probably want to 301 redirect to https too in .htaccess
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://gotimetrekkers.com/$1 [R=301,L]
Thanks but how do I correct that?
By manually editing a file called " .htaccess " in your websites root directory.