nginx, Anfragen ähnlich wie /page/123_index.json nach /page/index.json umleiten.
天蓬老师
天蓬老师 2017-05-16 17:10:33
0
2
738
location ~ ^/pages/\d+_index.json{
    proxy_pass /pages/index.json;
}

Ich habe es versucht, aber es hat nicht funktioniert.
Ich bin mit der Nginx-Konfiguration nicht vertraut und möchte Sie daher um Rat fragen.

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

Antworte allen(2)
PHPzhong

你可以使用 rewrite 重写你的请求路径

    location / {
        rewrite ^/pages/\d+_index\.json /pages/index.json break;
        proxy_pass http://127.0.0.1:8080;
    }
    # 测试下 会返回重写后的 url /pages/index.json
    location = /pages/index.json {
        return 200 $request_uri;
    }
阿神

我找到了两种解决的方法
rewrite:

location ~ ^/pages/{
     rewrite ^/pages/(\d+)/\d+_index.json   http://$host/pages/$1/index.json break;
}

proxy_pass

location ~ ^/pages/(\d+)/\d+_index.json$ {
    proxy_pass http://$host/pages/$1/index.json;
}
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage