gpt4 book ai didi

Nginx 重写触发器下载

转载 作者:行者123 更新时间:2023-12-01 07:41:45 34 4
gpt4 key购买 nike

我正在努力在 nginx 上创建一个简单的重写 url。
我的配置如下所示:

location /foo/bar {
rewrite ^/(.+)$ /index.php?p=$1 break;
}

例如/foo/bar/baz 应该变成 /foo/bar/index.php?p=baz(当然是在内部)

但是,通过 /foo/bar/ 访问的所有内容都会触发下载位于根目录的 index.php。我如何让它工作?

我也尝试过使用 try_files 但不知道如何从 $uri 中排除 /foo/bar/ 路径.

最佳答案

改变

rewrite ^/(.+)$ /index.php?p=$1 break;

rewrite ^/(.+)$ /index.php?p=$1 last;

基于 http://wiki.nginx.org/HttpRewriteModule#rewrite ,

last - completes processing of current rewrite directives and restarts the process (including rewriting) with a search for a match on the URI from all available locations.

[编辑] 使用 break 将留在同一位置 block 内。在您的情况下,该位置 block 内没有其他规则。所以默认情况下,nginx 会将其作为文件请求提供服务。

关于Nginx 重写触发器下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15420018/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com