Descargué el texto estándar html5 y no validaría con esto en el encabezado.http-equiv = "X-UA-compatible" content = "IE = edge, chrome = 1" ... ¿Poner esto en .htaccess?
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
Me dijeron que puedo agregar esto a .htaccess para el mismo efecto para evitar errores de validación.
<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>
Mi pregunta es
- ¿Cómo se prueba para asegurarse de que esto esté funcionando correctamente
- qué hace el parámetro FilesMatch? ¿Debería modificar eso o es tan bueno como es?
.htaccess funciona muy bien. +1 – jasonflaherty