Hello! 欢迎来到小浪资源网!


Nginx location 路由转发失败:如何正确配置root目录和try_files指令?


Nginx location 路由转发失败:如何正确配置root目录和try_files指令?

nginx location 路由转发问题

在配置 nginx 服务端时,您遇到了将访问 “ip 地址” 重定向到 “ip 地址/xxxx” 的问题。您的 nginx 配置包含如下 location 块:

location / {     # ... }  location /xxxx {     root /var/www/html;     # ... }

迁移文件后,您访问 “ip 地址/xxxx” 时,却仍然试图在 /var/www/html 下查找 index.html 文件。出现此问题的原因:

  • 错误的 root 目录设置:

    您将 root 目录设置为 /var/www/html,这也是您的旧文件位置。但是,您已经将文件移动到 /var/www/html/xxxx,因此需要更新 root 目录以匹配新的文件位置。

  • try_files 指令顺序:

    try_files 指令按指定顺序查找文件。只有在前面的文件不存在时,才会使用最后一个参数给定的 uri。您当前的配置顺序为:

    try_files $uri $uri/ /xxxx/index.html;

    这会导致 nginx 始终尝试在 /var/www/html 下查找文件,因为它是 /xxxx/index.html 之前列出的第一个路径。

解决方案:

要解决此问题,需要执行以下步骤:

  1. 更新 location /xxxx 块中的 root 目录为 /var/www/html/xxxx。
  2. 调整 try_files 指令顺序,将 “xxxx” 路径作为一个单独的 location 块进行处理。

正确的配置应如下所示:

location / {     # ... }  location /xxxx {     root /var/www/html/xxxx;     index index.html; }

相关阅读