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.
我目前正在使用一个使用 PHP 文件作为主要样式表 (style.php) 的 Wordpress 主题。我想这是因为您可以通过主题的 CMS 进行大量 css 样式设置。
现在的问题是我的服务器无法将 php 文件识别为主要样式表,因此加载网站时没有任何样式元素。
有人可以告诉我如何解决这个问题吗?(可能通过使用 .htaccess 文件?)
您必须确保将正确的“text/css”标题添加到 php 页面的顶部,以便将其解析为 CSS。
header("Content-type: text/css");
然后您可以将 php 文件包含为 css 包含: