标签: nginx
我刚刚开始使用nginx,想知道如何指出:
nginx
https://xxx.yyy.zzz/abc/test/
到
https://xxx.yyy.zzz/abc/test/index.html
有什么想法吗?
答案 0 :(得分:0)
location /abc/test { root /local/path/to/html; index index.html index.htm; }