美文网首页
Nginx配置Lumen框架

Nginx配置Lumen框架

作者: 会写bug的鸟 | 来源:发表于2018-07-15 21:00 被阅读0次

    location / {

                    try_files $uri $uri /index.php?$query_string;

            }

            location ~ \.php$ {

                fastcgi_pass  127.0.0.1:9000;

                fastcgi_index  index.php;

                fastcgi_split_path_info ^(.+\.php)(/.+)$;

                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

                include        fastcgi_params;

            }

    相关文章

      网友评论

          本文标题:Nginx配置Lumen框架

          本文链接:https://www.haomeiwen.com/subject/kymupftx.html