在Nginx中重写规则

时间:2011-09-21 21:23:05

标签: nginx

重写规则:

location / {         
    rewrite ^/([a-z]+)/$ /index.jsp?a=$1 last;
}

我在根目录中创建了一个目录/abc/,并将index.html放入/abc/

当我访问http://localhost/abc/时,我无法获得/abc/index.html

如何使http://localhost/abc/可以访问?

1 个答案:

答案 0 :(得分:1)

创建一个额外的位置块

location /abc {
    root /your/root/dir/abc/;
}