10
server {
    listen      80;
    server_name  pwta; 
    root html;

    location /test/{
        alias html/test/;
        autoindex on;
    }
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

此配置有效。但是,如果location /test/被替换,例如location /testpath/它不起作用(未指定输入文件)。我假设基于别名指令的解释,“位置”部分被删除,因此/testpath/info.php会导致html/test/info.php.

感谢您的任何建议。

4

2 回答 2

11

nginx 别名

    server {
    listen      80;
    server_name  pwta;
    index index.html index.php;
    root html;

    location /testpath/ {
        alias html/test/;
    }
    location ~  ^/testpath/(.+\.php)$ { ### This location block was the solution
        alias html/test/;     
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$1;
        include fastcgi_params;
    }
     location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
于 2012-04-11T08:36:35.017 回答
9

alias和指令都root最好与绝对路径一起使用。您可以使用相对路径,但它们与prefix用于编译 nginx 的配置选项相关,通常不是您想要的。

您可以通过执行nginx -V并找到下面的值来看到这一点--prefix=

通过查看日志向自己证明这一点,您会发现“没有此类文件”错误。

于 2013-11-18T19:30:36.107 回答