server {
listen 80;
server_name xxxx.com.cn;
error_log /tmp/eror.log;
set $www_root /home/web/yqbb/bgskk;
location / {
root $www_root;
index index.html index.php;
}
location /feedback {
index index.php;
alias /home/web/yqbb/bgskk/app/htdocs;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ ^/feedback/.+\.php$ {
root /home/web/yqbb/bgskk/app/htdocs;
rewrite /feedback/(.*\.php?) /$1 break;
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/web/yqbb/bgskk/app/htdocs/$fastcgi_script_name;
}
location ~ .*\.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
阅读(298) | 评论(0) | 转发(0) |