http-equiv="X-UA-兼容" content=“IE=边缘,chrome=1” ...将其放入 .htaccess 中?
我下载了 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>
我的问题是
- 如何测试以确保其正常工作
- filesmatch 参数有什么作用?我应该修改它还是原样就很好?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试通过 web.config 或 htacess 文件
Web.Config
传递它,之后您的页面将有效。抱歉,我不是 php 人。
Try to pass it through the web.config or htacess file
Web.Config
your page will be valid after that. Sorry I am not a php guy.
我发现的最好的 htaccess 配置是下面这个:
因为它只为 IE 浏览器发送标头。
The best htaccess configuration that I found is this one below:
Because it sends the header just for IE browsers.
http://www.validatethis.co.uk/tag/x-ua-兼容/
Aaron Layton 已经听到了:) 只需向下滚动到“修复”并跳过以上所有内容:)
或者您可以将其添加到您的 .htaccess 文件中,如下所示:
http://www.validatethis.co.uk/tag/x-ua-compatible/
Aaron Layton has it all hear :) Just Scroll down to the "The fix" and skip all the above :)
Or you could add it to your .htaccess file like this:
向 URI 发出请求并查看响应标头。有很多工具可以做到这一点,包括 Charles Proxy、Firebug 和 Chrome 开发者工具。
手册中有描述
Make a request to a URI and look at the response headers. There are plenty of tools to do that, including Charles Proxy, Firebug and Chrome Developer Tools.
It is described in the manual