Servlet html 生成的代码在 nosniff 添加到 httpd.conf 文件后显示为纯文本
Servlet html generated code is shown as plain text after nosniff added to httpd.conf file
将以下行添加到我们的 Apache httpd.conf 配置文件后,我们的 servlets[=27] 生成的 html 代码=] 没有被浏览器正确解释,但是它的 html 代码显示为 纯文本 :
Header set X-Content-Type-Options nosniff
从无到服务将以下 header 添加到 servlet 生成的代码中:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
这两个都不行:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1; X-Content-Type-Options=nosniff" />
任何帮助将不胜感激。
最后,对我来说,这完成了工作:
httpServletResponse.setContentType("text/html;charset=ISO-8859-1");
将以下行添加到我们的 Apache httpd.conf 配置文件后,我们的 servlets[=27] 生成的 html 代码=] 没有被浏览器正确解释,但是它的 html 代码显示为 纯文本 :
Header set X-Content-Type-Options nosniff
从无到服务将以下 header 添加到 servlet 生成的代码中:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
这两个都不行:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1; X-Content-Type-Options=nosniff" />
任何帮助将不胜感激。
最后,对我来说,这完成了工作:
httpServletResponse.setContentType("text/html;charset=ISO-8859-1");