Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站在 https 上。主要问题是,由于某些图像的 SRC 标记中有 http://,并且某些模块似乎包含使用 HTTP 的 javascript。如何强制所有内部和外部调用都使用 https。我对我的服务器拥有完全访问权限。
.htaccess在任何其他规则之前在您的根目录中尝试此规则:
.htaccess
RewriteCond %{HTTPS} off RewriteRule \.(?:jpe?g|gif|png|tiff|css|js)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,NC,R=301]