我正在尝试为以下情景实现nginx重写规则:
-请求/testfa/styles/style.css应该重定向到/testfa/templates/styles/style.css
我已为服务器启用重写日志记录,并创建了以下规则:

location /testfa {
  rewrite ^/styles/(.+)?$ /testfa/templates/styles/$1 last;
}


但是当我尝试执行请求时,我从服务器收到404错误,并且日志文件不包含有关重写的任何信息,仅显示以下消息:

open() "......../testfa/styles/style.css" failed (2: No such file or directory)


nginx执行这种重写的正确方法是什么?

最佳答案

location /testfa/ {
    rewrite ^/testfa/styles/(.+)$ /testfa/templates/styles/$1 last;
}


这对您有用吗?

我测试过的虚拟>

server {
    listen          ...ip...:80;
    server_name     sub.domain.com;
    root            /usr/local/www/test;
    error_log       /usr/local/www/test/error_debug.log debug;

    rewrite_log     on;

    location /testfa/ {
        rewrite ^/testfa/styles/(.+)$ /testfa/templates/styles/$1 last;
    }
}


这可行。甚至日志已报告:

2011/11/25 01:06:52 [notice] 35208#0: *456705 rewritten data: "/testfa/templates/styles/test.css", args: "", client: IP, server: sub.domain.com, request: "GET /testfa/styles/test.css HTTP/1.1", host: "sub.domain.com"

09-04 06:38