+ -
当前位置:首页 → 问答吧 → nginx的location问题

nginx的location问题

时间:2010-11-25

来源:互联网

我想问下大虾们,nginx里面的server下的location /    是匹配以/开头的字段对吧

server {
        listen       80;
        server_name  www.xxx.com;

        index index.html index.htm index.php;
        root  /var/www/html;
         ....
         ....
         ....
         ....
         ....
        location / {
                rewrite ^/(a|b|c|d)\.html$   /$1.php  last;                       
                rewrite ^/([0-9]+)$   /test.php?fid=$1 last;
                }
           }
这里面这个location的"/"是不是指/var/www/html
另外/test.php?fid=$1中“?”代表什么意思?

作者: kuaifeidao   发布时间: 2010-11-25

顶起来。。。

作者: kuaifeidao   发布时间: 2010-11-27

热门下载

更多