6

我试图让 Nginx 将 URL 空间 ./data/(.+).png 重写为 serveImage.php?guid=$1

server {
    server_name my.server;
    listen 80;
    listen 127.0.0.1:80;
    root /var/www/my.server;
    index index.html;

    location / {
        try_files $uri $uri/ index.html;
        rewrite ^/data/(.+).png serveImage.php?guid=$1 last;
    }

    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param HTTPS off;
    }
}

我究竟做错了什么?serveImage.php确实存在于文档根目录中。

4

2 回答 2

21

重写似乎没有按计划进行(access.log 或 error.log 中似乎没有任何迹象表明该规则已被捕获)。我制作了一个更通用的路由器,它可能也更适合其他未知的需求。

location / {
    try_files $uri $uri/ @router;
    index index.html index.php;
    error_page 403 = @router;
    error_page 404 = @router;
}

location @router {
    rewrite ^(.*)$ /router.php?$1;
}
于 2013-10-20T19:44:39.367 回答
6

好吧,如果它总是/data我会为它创建一个特定的位置,就像这样

location ~ /data/(.+).png {
    try_files $uri /serveImage.php?guid=$1;
}

试试这个,告诉我它是否有效。

于 2013-10-21T08:36:36.803 回答