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

浙公网安备 33010602011771号