`
FZtree
  • 浏览: 106185 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

nginx 1.8

 
阅读更多

server {

  listen 80;

  server_name test4.mp.com;

 

  root /home/mk/www/test4;

  index index.php index.html;

 

  location / {

    try_files $uri $uri/ /index.php$uri?$args;

  }

 

  location ~ \.php {

    fastcgi_pass unix:/tmp/php-fcgi.sock;

    include fastcgi.conf;

 

    fastcgi_index index.php;

    fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;

    fastcgi_param  PATH_INFO        $fastcgi_path_info;

    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

  }

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics