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或.less而不是.css?
.php
.less
.css
我想知道旧浏览器或移动浏览器是否有任何问题,以及它是否会影响文件的缓存。
您要么使用 php 发送标头, header('Content-Type: text/css'); 要么配置您的服务器以提供您选择的任何结尾作为 mime/type css。
header('Content-Type: text/css');
无论哪种方式,任何浏览器都不应该关心实际的文件扩展名是什么,只要 mime 类型正确,并指定您的文件是 css。
对于更少的文件和 nginx - 这是一个教程,用于动态解析 解析更少的文件
对于 php 和更少 -这里