胤彬-2018-10-16 17:46:52
vhost構成
server {
listen 80;
server_name test.cn ;
root "D:ceshi888lhyun";
include "rewrite/thinkphp.conf";
index index.htmlindex.htmインデックス。 php;
#location {
#
# #autoindex on;
#}
location ~ .php(.*)$ {
fastc gi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param _INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_params を含める;
}
}
thinkphp.conf
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last ;
休憩;
}
}