Nginx 实现 pathinfo 模式

ThinkPHP5.1在没有定义路由的情况下典型的URL访问规则是:

http://serverName/模块/控制器/操作/[参数名/参数值...]

在Nginx 环境下这样子访问会显示404

解决方法,修改server配置文件

修改前:

server
{
    listen 80;
    server_name daijia.pasawu.top;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/daijia.pasawu.top/public;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-72.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/daijia.pasawu.top.conf;
    #REWRITE-END
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log /dev/null;
    }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log /dev/null; 
    }
    access_log  /www/wwwlogs/daijia.pasawu.top.log;
    error_log  /www/wwwlogs/daijia.pasawu.top.error.log;
}

修改后:

server
{
    listen 80;
    server_name daijia.pasawu.top;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/daijia.pasawu.top/public;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-72.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/daijia.pasawu.top.conf;
    #REWRITE-END
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    #修改
    location / {
        root /www/wwwroot/daijia.pasawu.top/public;
        index  index.php index.html index.htm;

        if (!-e $request_filename) {
            rewrite ^/(.*)$ /index.php/$1 last;
        }
    }
    #修改
    location ~ ^(.+\.php)(.*)$ {
        root /www/wwwroot/daijia.pasawu.top/public;
        fastcgi_split_path_info       ^(.+\.php)(.*)$;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO       $fastcgi_path_info;

        include        fastcgi_params;
    }
    access_log  /www/wwwlogs/daijia.pasawu.top.log;
    error_log  /www/wwwlogs/daijia.pasawu.top.error.log;
}

配置文件(root等)的路径请按自己的路径修改即可支持pathinfo

方案2:

在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:

    location / {
       if (!-e $request_filename) {
            rewrite  ^(.*)$  /index.php?s=/$1  last;
        }
    }

Pasa吴技术博客
请先登录后发表评论
  • latest comments
  • 总共0条评论