重写规则:
location / {
rewrite ^/([a-z]+)/$ /index.jsp?a=$1 last;
}
我在根目录中创建了一个目录/abc/
,并将index.html
放入/abc/
当我访问http://localhost/abc/
时,我无法获得/abc/index.html
如何使http://localhost/abc/
可以访问?
答案 0 :(得分:1)
创建一个额外的位置块
location /abc {
root /your/root/dir/abc/;
}