我想将 .xhtml 文件作为
application/xhtml+xml
如果浏览器说它接受它。text/html
除此以外
我尝试使用它,mod_rewrite
但它不起作用Options -FollowSymLinks
(请参阅如果我有 `Options -FollowSymLinks`,查看受 Apache RewriteRule 影响的文件时为什么会出现 403 Forbidden?)。
然后,我尝试了
<Files "*.xhtml">
<If "%{HTTP:Accept} !~ /application\/xhtml\+xml/">
ForceType text/html
</If>
</Files>
但我得到一个语法错误:Failed to compile regular expression。
同时,我使用此代码...
<Files "*.xhtml">
<If "%{HTTP:Accept} !~ /xhtml\+xml/">
ForceType text/html
</If>
</Files>
...这行得通,但我想匹配正确的 MIME 类型。