美文网首页
thinkphp5 在nginx中配置

thinkphp5 在nginx中配置

作者: thebestduleisi | 来源:发表于2019-06-11 15:52 被阅读0次

/etc/nginx/sites-available/

server {

        listen 80 ;

        root /data/website/new.lanhaitools.com/public;

        index index.php index.html;

        server_name new.lanhaitools.com;

        location / {

                if (!-e $request_filename) {

                        rewrite  ^(.*)$  /index.php?s=/$1  last;

                }

        }

        location ~ \.php$ {

                include snippets/fastcgi-php.conf;

                fastcgi_pass unix:/run/php/php7.0-fpm.sock;

        }

}

相关文章

网友评论

      本文标题:thinkphp5 在nginx中配置

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