搜尋

首頁  >  問答  >  主體

nginx中設定虛擬目錄的問題?

server {
        listen       80;
        server_name  localhost;
    index index.html index.htm index.php;
    root /alidata;
    location ~ .*\.(php|php5)?$
    {
        #fastcgi_pass  unix:/tmp/php-cgi.sock;
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index index.php;
        include fastcgi.conf;
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires 30d;
    }
    location ~ .*\.(js|css)?$
    {
        expires 1h;
    }
    location / {
     if (!-e $request_filename)
     {
         rewrite (.*) /index.php;
     }
   }
}

我現在是root /alidata;也就是指向alidata下的根目錄。

如果只指向兩個/alidata/A,/alidata/B,如何設定?

ringa_leeringa_lee2758 天前397

全部回覆(1)我來回復

  • PHP中文网

    PHP中文网2017-05-16 17:18:45

    你可以為每個location添加正規則來匹配A和B,例如 location/(A|B)/代替~

    回覆
    0
  • 取消回覆