nginx-ngx_http_random_index_module
Posted slim_liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx-ngx_http_random_index_module相关的知识,希望对你有一定的参考价值。
模块简介:在收到以"/"为结尾的请求时,在对应的目录下随机选择一个文件作为index文件。
模块类型:常用标准http模块
使用实例:
location /privacy_policy/ {
root /opt/linkface/backend-api/public;
try_files $uri $uri/ /B-LAP-privacy_policy.html /index.html /index.htm;
}
这里的应用场景使用try_files,不能使用index。
以上是关于nginx-ngx_http_random_index_module的主要内容,如果未能解决你的问题,请参考以下文章