仅当Nginx不存在文件时,才将URL重定向到PHP

时间:2013-10-20 19:15:41

标签: php nginx

我想让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确实存在于文档根目录中。

2 个答案:

答案 0 :(得分:18)

重写似乎没有按计划工作(似乎没有看到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;
}

答案 1 :(得分:4)

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

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

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