嵌入式LINUX系统开发教程pdf下载
- location /user {
- alias /home/wwwroot/img;
- index index.php index.html index.htm;
- location ~ ^/user/(.+.php)$ {
- alias /home/wwwroot/img/$1;
- fastcgi_pass unix:/tmp/php-cgi.sock;
- include fastcgi_params;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /home/wwwroot/img/$1;
- }
- location ~* ^/user/(.+.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt|swf))$ {
- alias /home/wwwroot/img/$1;
- }
- if (!-e $request_filename){
- rewrite ^/(.*) /user/index.php last;
- }
- }
转载请注明:谷谷点程序 » linxu nginx配虚拟目录支持php环境