Why am I suddenly getting a “Blocked loading mixed active content” issue in Firefox?

后端 未结 14 1508
我寻月下人不归
我寻月下人不归 2020-11-22 06:46

This morning, upon upgrading my Firefox browser to the latest version (from 22 to 23), some of the key aspects of my back office (website) stopped working.

Looking a

14条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-22 07:01

    To force redirect on https protocol, you can also add this directive in .htaccess on root folder

    RewriteEngine on
    
    RewriteCond %{REQUEST_SCHEME} =http
    
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    

提交回复
热议问题