- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我制作了一个网页,该网页应将 html 文件加载到 iframe 中。当您单击某个内容时,它会出现在 .虽然我所有的文件都是带有html标签的html文档,但是它们没有扩展名。所以在 iframe 中,它呈现为纯文本。我如何配置 Apache 服务器设置,以便在文件没有任何扩展名时将默认文件扩展名设置为“.html”?它与 .htaccess 文件有什么关系吗?
似乎我可以通过在该文件中做一些技巧来隐藏文件扩展名,但我正在尝试做相反的事情(添加扩展名)。我该怎么做呢?
最佳答案
如果您使用 an old version Apache 的:
DefaultType text/html
DefaultType Directive
MIME content-type that will be sent if the server cannot determine a type in any other way
对于current version :
Use the mime.types configuration file and the AddType to configure media type assignments via file extensions, or the ForceType directive to configure the media type for specific resources. Otherwise, the server will send the response without a Content-Type header field and the recipient may attempt to guess the media type.
所以:
# force all files to be text/html:
<Location />
ForceType text/html
</Location>
关于html - 如何在 Apache 服务器中将没有 .html 扩展名的页面呈现为 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29065364/
我是一名优秀的程序员,十分优秀!