nginx的列举文件列表功能无法开启?

server {
        listen 8000;
        root html;
        autoindex on;
        autoindex_exact_size off;
        autoindex_localtime on;

}

已经使用autoindex on;开启列表功能,但是访问localhost:8000还是显示index.html的内容

阅读 984
1 个回答

有index.html就会显示index.html,你可以把index配置关掉

推荐问题