调试笔记-系列文章目录

调试笔记-20240617-Linux-nginx配置php支持显示404问题



前言

本文记录在 OpenWrt-23.05 上为 nginx 配置 php 支持时显示 404 页面问题的调试步骤。

实验使用的电脑如下:

实验使用的电脑如下:

CPU:

Intel Core i5 8265U

操作系统:

Microsoft Windows 10  Professional (x64), Version 22H2, Build 19045.4412

一、调试环境


操作系统:Windows 10 专业版

操作系统详细信息如下:

Microsoft Windows 10  Professional (x64), Version 22H2, Build 19045.4412

调试环境

  • Windows 系统已安装 QEMU 并成功运行 OpenWrt 发行版

参考【安装笔记-20240520-Windows-在 QEMU 中尝试运行 OpenWRT


调试目标

解决 nginx 配置 php 支持时显示 404 页面的问题。

【调试笔记-20240617-Linux-nginx配置php支持显示404问题】-LMLPHP


二、调试步骤

对比手动修改的 nginx 配置文件与 uci 生成的差异

手动修改的 nginx 文件中, root 命令放在了最外层,如下所示:

http {

        ...
        root /srv/nginx/dl.tanghui.fun;
        ...
        server { # dl.tanghui.fun
        	...
        }
}

uci 自动生成的配置,为了统一将其放到了 .locations 文件中,通过 include 命令包含到 server 中,如下所示:

http {

        ...
        root /www;
        ...
        server { # dl.tanghui.fun
        	...
        	include conf.d/dl.tanghui.fun.locations;
        	include conf.d/php8.locations;
        	...
        }
}

dl.tanghui.fun.locations 文件内容如下:

location / {
    root /srv/nginx/dl.tanghui.fun;
    index index.html index.php;
    try_files $uri $uri/ /index.php$is_args$args;
    if ( -d $request_filename ) {
        rewrite ^/(.*)([^/])$ $scheme://$http_host/$1$2/ permanent;
    }
}

这样排列 root 导致在 php8.locations 中 document_root 实际使用的时 http {} 中的 root

重新调整 dl.tanghui.fun.locations 文件中的 root 命令,如下:

root /srv/nginx/dl.tanghui.fun;

location / {
    index index.html index.php;
    try_files $uri $uri/ /index.php$is_args$args;
    if ( -d $request_filename ) {
        rewrite ^/(.*)([^/])$ $scheme://$http_host/$1$2/ permanent;
    }
}

这样,让 root 命令归属于 server { #dl.tanghui.fun } 这一段中,重启 nginx 测试,显示正常。

【调试笔记-20240617-Linux-nginx配置php支持显示404问题】-LMLPHP


调试杂项

1、需要将 php.ini 中的 doc_root 设置注释掉

;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;
                 
;include_path = ".:/php/includes"
;doc_root = "/www"          
user_dir =                  
extension_dir = "/usr/lib/php8"
;sys_temp_dir = "/tmp"   
enable_dl = On         
cgi.force_redirect = 1    
;cgi.nph = 1             
cgi.redirect_status_env = "yes"
cgi.fix_pathinfo = 1 
;cgi.discard_path = 1  
;fastcgi.impersonate = 1        
;fastcgi.logging = 0                    
;cgi.rfc2616_headers = 0
;cgi.check_shebang_line = 1

三、应用场景

web服务器支持 php 脚本


四、参考资料


总结

本文记录在为 nginx 配置 php 支持时显示 404 页面问题的调试步骤和解决方法。

06-18 00:25