gpt4 book ai didi

html - 如何在 Apache 服务器中将没有 .html 扩展名的页面呈现为 html 页面

转载 作者:行者123 更新时间:2023-11-27 23:47:33 25 4
gpt4 key购买 nike

我制作了一个网页,该网页应将 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com