我下载了html5样板文件,它不会在标题中验证。
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
我被告知我可以将此添加到.htaccess以获得相同的效果以避免验证错误。
<IfModule mod_headers.c>
Header set X-UA-Compatible "IE=Edge,chrome=1"
# mod_headers can't match by content-type, but we don't want to send this header on *everything*...
<FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|xpi|safariextz|vcf)$" >
Header unset X-UA-Compatible
</FilesMatch>
</IfModule>
我的问题是
答案 0 :(得分:12)
尝试将其传递给web.config或htaccess文件
的Web.Config
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=Edge,chrome=1" />
</customHeaders>
</httpProtocol>
之后您的网页有效。对不起,我不是一个php人。
答案 1 :(得分:7)
我找到的最好的htaccess配置如下:
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
BrowserMatch MSIE ie
Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie
</IfModule>
</IfModule>
因为它只为IE浏览器发送标题。
答案 2 :(得分:4)
http://www.validatethis.co.uk/tag/x-ua-compatible/
Aaron Layton听到了这一切:)只需向下滚动到“修复”并跳过以上所有内容:)
或者您可以将它添加到.htaccess文件中,如下所示:
<FilesMatch "\.(htm|html|php)$">
<IfModule mod_headers.c>
BrowserMatch MSIE ie
Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie
</IfModule>
</FilesMatch>
答案 3 :(得分:2)
我如何测试以确保其正常工作
向URI发出请求并查看响应标头。有很多工具可以做到这一点,包括Charles Proxy,Firebug和Chrome Developer Tools。
filesmatch参数有什么作用?