gpt4 book ai didi

linux - Nginx的配置

转载 作者:太空宇宙 更新时间:2023-11-04 12:53:00 25 4
gpt4 key购买 nike

我很抱歉我的英语不好。但是我找不到任何有用的信息用我妈妈的语言:(

我在我的 VPS 上运行 Nginx 服务器。我想访问/home/username/public_html/URL 类似于“http://example.com/~username/

现在我用

ln -s /home/username/public_html/ /var/www/html/~username

访问我的目录。但是当我尝试使用“重写”时我发现我不知道如何编码。我一直在 nginx.conf 中尝试这段代码

Location / {
root /var/www/html;
rewrite ^~(.*)/$ /home/$1/public_html break;
}

但它不起作用。我该怎么办?

最佳答案

你的重写必须指向一个 url,例如:

rewrite  (.*)  http://www.example.org ;

请看这里的例子:http://nginx.org/en/docs/http/converting_rewrite_rules.html

关于linux - Nginx的配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36546759/

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