网站地图    收藏   

主页 > 系统 > linux系统 >

Nginx.conf的设置用于Zend Framework项目 - Linux操作系统

来源:自学PHP网    时间:2015-04-14 11:51 作者: 阅读:

[导读] server {02 listen 80;03 server_name wenda.localhost.com;04 index index.html index.htm index.php;05 root /wnmp/www/wenda;06 autoindex on;0708 #error_page 404 /404.html;0910 # redi......

server {
02
     listen       80;
03
     server_name  wenda.localhost.com;
04
     index index.html index.htm index.php;
05
     root   /wnmp/www/wenda;
06
     autoindex on;
07
     
08
     #error_page  404     /404.html;
09
 
10
     # redirect server error pages to the static page /50x.html
11
     #
12
     error_page   500 502 503 504  /50x.html;
13
     location = /50x.html {
14
         root  /wnmp/www;
15
     }
16
 
17
      location / {
18
         index  index.php index.html index.htm;
19
         if (-f $request_filename) {
20
             break;
21
         }
22
         if (-d $request_filename) {
23
             break;
24
         }
25
         rewrite ^(.+)$ /index.php last;
26
     }
27
 
28
     location ~ .*\.(php|php5)?$ {
29
         fastcgi_pass   127.0.0.1:9000;
30
         include /wnmp/nginx/conf/fastcgi_params;
31
     }
32
 }

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论