nginx rewirte

时间:2020-12-28 22:10:26

server {
listen 8888;
server_name jobPhp;
root F:\ck\Porject\quanRelease\quanJob;

try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
}

location ~ \.php$ {
index index.html index.htm index.php;
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME F:\ck\Porject\quanRelease\quanJob$fastcgi_script_name;
include fastcgi_params;
}

}