如何引用来自同一域的样式表?

How to reference stylesheet from same domain?

所以我在这个目录中有以下 PHP 文件:http://website.com/website/test/form.php

form.php<head> 标签中,我有以下内容: <link rel="stylesheet/css" type="text/css" href="http://website.com/css/style.css" />

当我访问 http://website.com/css/style.css 时,样式表的内容显示正常,那么为什么网络浏览器不加载此样式表? 该网站不是 https。

改用 href="css/style.css"。