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页面表示成功

相关文章:

  • 2022-12-23
  • 2021-09-05
  • 2021-05-28
  • 2021-10-12
  • 2022-01-13
  • 2021-05-14
猜你喜欢
  • 2022-12-23
  • 2021-11-27
  • 2021-12-20
  • 2021-10-16
  • 2022-12-23
  • 2022-01-16
  • 2021-09-08
相关资源
相似解决方案