xHTML IE7 MIME 类型
有人可以告诉我将静态 XHTML 文件的 MIME 类型定义为 text/html 的方法吗? 我不想使用 php、asp.net…….. javascript 就可以
Can someone tell me method to define the MIME-Type of a static XHTML File as text/html …. I don’t want to use php, asp.net…….. javascript would be ok
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不应该。 原因如下:
将 XHTML 作为 text/html 发送被视为有害 (http://hixie.ch /宣传/xhtml)
You shouldn't. Here's why:
Sending XHTML as text/html Considered Harmful (http://hixie.ch/advocacy/xhtml)
使用您的网络服务器来完成此操作。 如果您使用的是 apache,请在该文件所在的目录中创建一个名为 .htaccess 的文件,并添加以下行:
AddType text/html .html
Use your web server to do it. If you are using apache, create a file called .htaccess in the directory with the file and add this line:
AddType text/html .html