location /test/ {
alias /home/wwwroot/default;
index index.php;
location ~ .php$ {
expires epoch;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
fastcgi_param SCRIPT_FILENAME /home/wwwroot/default$fastcgi_script_name;
}
location ~ .(jpg|jpeg|gif|png|ico)$ {
access_log off;
expires 33d;
}
}
location /test {
alias /home/wwwroot/test/;
index index.html index.php;
}
location ~ /test/.+\.php$ {
rewrite /test/(.+\.php) /$1 break;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/wwwroot/test/$fastcgi_script_name;
include fastcgi_params;
}
| 欢迎光临 VPS侦探论坛 (https://bbs.lnmp.com/) | Powered by Discuz! X3.4 |