简单,可复制

点点滴滴,尽在文中

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

# ci 
    server {
        listen       80;
        server_name  my.clb.com;
        root /var/website/ci;
        index        index.php index.html index.htm;

        access_log  logs/my.clb.com_access.log  main;

        location / {
           index index.php
           root /var/website/ci;
           if ($request_filename !~ (js|css|images|robots\.txt|index\.php) ) {
                rewrite ^(.*)$ /index.php/$1 last;
                break;
           }
        }

        location ~ /index.php/ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            include        fastcgi.conf;
        }

    }

posted on 2013-10-01 15:41  ggjucheng  阅读(3799)  评论(0编辑  收藏  举报