返回介绍

介绍

其他

How-To

开发

模块参考

ngx_http_index_module

发布于 2024-08-13 23:46:27 字数 2626 浏览 0 评论 0 收藏 0

ngx_http_mirror_module# ngx_http_index_module

ngx_http_index_module 模块处理以斜线字符(/)结尾的请求。这些请求也可以由ngx_http_autoindex_modulengx_http_random_index_module 模块来处理。

示例配置

location / {
  index index.$geo.html index.html;
}

指令

index

-说明
语法index file ...;
默认index index.html;
上下文http、server、location

定义将用作索引的文件。文件名可以包含变量。以指定的顺序检查文件。列表的最后一个元素可以是一个具有绝对路径的文件。例:

index index.$geo.html index.0.html /index.html;

应该注意的是,使用索引文件发起内部重定向,可以在不同的 location 处理请求。例如,使用以下配置:

location = / {
  index index.html;
}

location / {
  ...
}

/ 请求实际上是将在第二个 location 处理为 /index.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文