gpt4 book ai didi

regex - 根据 url/nginx 设置内容处置

转载 作者:行者123 更新时间:2023-12-02 11:10:47 24 4
gpt4 key购买 nike

让 nginx 提供像 http://foobar.tld/<random_dir>/<file_md5sum_as_filename> 这样的 url 的静态文件我想如果我在 url 末尾指定 ?f="filename.filetype" - nginx 在末尾解析该查询字符串(如果指定)并准备新的内容,并处理与指定参数匹配的内容,并且没有任何动态后端,这是不可能的。

或实例http://foobar.tld/<random_dir>/<file_md5sum_as_filename>?f="foobar.pdf"

这样的事情可以用 nginx/lua 模块来完成吗?有没有人有任何有用的例子或做过类似的事情?

最佳答案

纯Nginx配置

location / {
if ($arg_f) {
add_header Content-Disposition "attachment; filename=$arg_f";
}
}

关于regex - 根据 url/nginx 设置内容处置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13629578/

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