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

 
ob7dev replied on at Permalink Reply
ob7dev
Probably because its trying to load things over http and when browsed via https the assets are blocked from being loaded via http.
madesimplemedia replied on at Permalink Reply
madesimplemedia
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]
PJSAndo replied on at Permalink Reply
Thanks but how do I correct that?
ob7dev replied on at Permalink Reply
ob7dev
By manually editing a file called " .htaccess " in your websites root directory.