How do I locate specific file in a post that affects ssl?
A quick squint at your site reveals that you’re serving it with Nginx, so a simple .htaccess redirect won’t work. The following block in your Nginx config should take care of any stray locally-served files that are still coming over http: server { listen 80 default_server; listen [::]:80 default_server; server_name _; return 301 https://$host$request_uri; } … Read more