nginx rewirte

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;
}


}

posted @ 2015-11-03 13:43  无为有道  阅读(170)  评论(0编辑  收藏  举报