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 文件(使用 .htaccess)的文档,但是我知道 HTML 也是可能的。
我将如何配置 .htaccess 以在浏览器访问时将具有任何扩展名的文件(即“file.fi”)视为 HTML 文件?
使用AddType指令。
AddType
AddType text/html .fi
(我建议根据“不要可爱”原则反对它,URL 上的非标准文件扩展名可能至少会混淆某些人)