gpt4 book ai didi

Nginx Yii2 不同文件夹下的配置

转载 作者:行者123 更新时间:2023-12-05 04:11:43 25 4
gpt4 key购买 nike

我在为 yii2 基本应用程序配置 nginx 服务器时遇到问题。

这是我的服务 block 文件:

server {
listen 80 ;

access_log /var/log/nginx/access-server.log;
error_log /var/log/nginx/error-server.log;

charset utf-8;

location /fetch {
root /usr/share/nginx/html/another_folder/web/;
try_files $uri $uri/ /index.php$is_args$args;
}

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

}

我的项目位于另一个文件夹“another_folder”中。我希望当用户访问 url 时:http://ip/fetch文件 nginx 将从另一个文件夹提供文件。

我的错误日志文件返回我:

2017/02/11 12:38:52 [error] 4242#0: *12 FastCGI sent in stderr: "Unable to open primary script: /usr/share/nginx/html/index.php (No such file or directory)" while reading response header from upstream

兄弟展示:未指定输入文件。

你能帮我解决这个问题吗?

谢谢!

最佳答案

根据您的评论,任何以 /fetch 开头但与别名路径中的静态文件不匹配的 URI 都应重定向到 /fetch/index.php .

location ^~ /fetch {
alias /usr/share/nginx/html/another_folder/web;

if (!-e $request_filename) { rewrite ^ /fetch/index.php last; }

location ~ \.php$ {
if (!-f $request_filename) { return 404; }

include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_pass 127.0.0.1:9000;
}
}

我们避免使用 try_filesalias 因为 this long term issue .

参见 this caution关于 if 的使用。

关于Nginx Yii2 不同文件夹下的配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42176020/

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