thinkphp5-安装配置

2021/10/30 17:15:19

本文主要是介绍thinkphp5-安装配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

composer方式下载源码

composer create-project topthink/think=5.0.* tp5  --prefer-dist

nginx配置(默认不支持path_info模式,要使用?s=/的方式访问地址)

server {
        listen       80;
        server_name  www.tp5.com;

        root /var/www/tp5/public;
        index  index.html index.htm index.php;

        #access_log  logs/host.access.log  main;

       location / {
            root /var/www/tp5/public;
            index  index.html index.htm index.php;
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=/$1  last;
                break;
            }
        }

        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #

        #以下配置支持PATH_INFO访问方式
        location ~ \.php { #去掉$
             fastcgi_pass   127.0.0.1:9000;
             fastcgi_index  index.php;
             fastcgi_split_path_info ^(.+\.php)(.*)$; #增加这一句
             fastcgi_param PATH_INFO $fastcgi_path_info; #增加这一句
             fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
             include        fastcgi_params;
         }

}

重启NGINX

修改hosts

127.0.0.1 www.tp5.com

访问测试

www.tp5.com

返回tp页面表示成功



这篇关于thinkphp5-安装配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程