nginx

ngx_http_random_index_module模块


english
русский

简体中文
עברית
日本語
türkçe

新闻 [en]
nginx 介绍
下载 [en]
安全漏洞 [en]
文档
FAQ
外部连接 [en]
书籍 [en]
支持 [en]
捐献 [en]

trac
wiki
twitter
nginx.com
翻译内容可能已经过旧。 你可以通过 英文版本 查看最近的更新。
配置示例
指令
     random_index

ngx_http_random_index_module模块在文件夹中随机选择一个文件作为默认页。 使用此模块前要先配置 ngx_http_index_module 模块。

nginx默认不编译这个模块, 需要开启 --with-http_random_index_module 编译选项。

配置示例

location / {
    random_index on;
}

指令

语法: random_index on | off;
默认值:
random_index off;
上下文: location

在所在location启动或禁用模块处理。

翻译: WenMing