“此页面包含安全和不安全的项目” 主题与 SSL协议
所以我有一个可以通过 SSL 连接访问的网站(“https://mystupidwebsite/etc...” )
我将主题与单个 css 文件结合使用。 当页面呈现时,标题中的 CSS 链接标记仍然具有 http://mystupidwebsite/etc .. 。 完整路径。
如何让它使用 https 或使用相对路径正确注册 css 文件?
谢谢,
内特
编辑:哦! 我刚刚发现我的问题。 主题正确添加带有相对路径的 css。 母版页中有一个链接标签使用相同 CSS 的绝对路径。 抱歉浪费您的时间!
So I have this website that will be accessed via an SSL connection ("https://mystupidwebsite/etc...")
I am using themes in conjunction with a single css file. when the page is rendered though, the CSS link tag in the header still has the http://mystupidwebsite/etc... full path.
How do I get it to regester the css file correctly, with the https or use relative paths?
thanks,
Nate
Edit: Oh! I just found my issue. Themes are correctly adding the css with a relative path. There was a link tag in the master page that was using absolute paths to the same css. sorry for wasting your time!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用相对路径
use relative pathing
只需链接到
/path/to/style.css
而不是完整的http://example.com/path/to/style.css
。 这假设您已向 HTTPS 和 HTTP 请求提供相同的内容。 如果没有,您需要创建一个别名或符号链接或其他东西。Just link to
/path/to/style.css
instead of with the fullhttp://example.com/path/to/style.css
. This assumes you've got the same content being served to HTTPS and HTTP requests. If not, you'll need to make an alias or symbolic link or something.