标签:
1.修改thinkphp配置文件
打开文件,项目根目录/App/Home/Conf/config.php
‘URL_MODEL‘=>1, //url设置为PathInfo模式
2.修改linux下的nginx配置文件
/etc/nginx/nginx.conf
server{ ...... location ~ \.php { root /www/; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; #定义变量 $path_info ,用于存放pathinfo信息 set $path_info ""; #定义变量 $real_script_name,用于存放真实地址 set $real_script_name $fastcgi_script_name; #如果地址与引号内的正则表达式匹配 if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") { #将文件地址赋值给变量 $real_script_name set $real_script_name $1; #将文件地址后的参数赋值给变量 $path_info set $path_info $2; } #配置fastcgi的一些参数 fastcgi_param SCRIPT_FILENAME $document_root$real_script_name; fastcgi_param SCRIPT_NAME $real_script_name; fastcgi_param PATH_INFO $path_info; } ...... }
3.重启nginx服务
运行以下命令
service nginx restart
标签:
原文地址:http://www.cnblogs.com/lizhihui/p/5478554.html