Laravel的Nginx配置详解

作者:袖梨 2022-06-25

例子

 代码如下 复制代码

server {
    listen 80;
    server_name tool.lu;
    root /var/www/html/www.111com.net/public;
    index index.html index.php;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ .php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

if (!-f $request_filename)貌似并不是一个好的做法

相关文章

精彩推荐