Nginx配置tp5支持pathinfo以及隐藏入口文件

最近做微信公众号的开发,服务器上搭建的是LNMP环境,由于nginx默认是不支持pathinfo的,所以需要修改nginx.conf

注:我直接使用服务器IP进行微信token认证时总是失败,后来发现是因为使用了非80端口,不知道小伙伴们是否跟我一样遇到同样的问题

另外推荐一个免费内网映射工具:NATAPP,此乃微信接口调试神器o(∩_∩)o 哈哈!!!
server {

    listen 8088;
    server_name localhost;

    access_log logs/access.log;
    error_log  logs/error.log;

    #root是下面设计到文件路径的根目录
    root /usr/share/nginx/html;
    index index.html index.php;

    #定义变量
    set $root /usr/share/nginx/html;

    #匹配url中server_name之后的部分
    location /tp5/public/ {
        #重写url 为了隐藏tp5中的index.php
        if ( !-e $request_filename) {
            #将url中server_name之后的部分与 /tp5/public/* 匹配 如果匹配则改写URl为/tp5/public/index.php/*
            rewrite ^/tp5/public/(.*)$ /tp5/public/index.php/$1 last;
            break;
        }
    }

    #pathinfo配置 使支持tp5的标准url
    location ~ .+\.php($|/) {
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;    #不支持的改为:127.0.0.1:9000;
        fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
        fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name;
        include fastcgi_params;
    }
}

你可能感兴趣的:(Nginx配置tp5支持pathinfo以及隐藏入口文件)