Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎專欄 | Search | Email

第 11 章 Fuel PHP

目錄

11.1. 框架安裝
11.1.1. oil
11.1.2. Apache
11.1.3. Nginx

Fuel PHP 源自 CodeIgniter

11.1. 框架安裝

http://fuelphp.com/

11.1.1. oil

			
$ curl get.fuelphp.com/oil | sh

$ oil create <project_name>
			
			

zip包安裝


$ unzip fuelphp-v1.1.zip

$ ls /www/fuelphp
CHANGELOG.md  docs  fuel  oil  public  README.md
			

11.1.2. Apache

			
<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteBase /public

    RewriteRule ^(/)?$ index.php/$1 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
			
			

11.1.3. Nginx

$ cat /etc/nginx/sites-available/fuel

server {
        #listen   80; ## listen for ipv4; this line is default and implied
        #listen   [::]:80 default ipv6only=on; ## listen for ipv6

        root /www/fuelphp/public;
        index index.html index.php;

        # Make site accessible from http://localhost/
        server_name localhost;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to index.html
                try_files $uri $uri/ /index.html;
        }

        #location /doc {
        #       root /usr/share;
        #       autoindex on;
        #       allow 127.0.0.1;
        #       deny all;
        #}

        #location /images {
        #       root /usr/share;
        #       autoindex off;
        #}

        #error_page 404 /404.html;

        # redirect server error pages to the static page /50x.html
        #
        #error_page 500 502 503 504 /50x.html;
        #location = /50x.html {
        #       root /usr/share/nginx/www;
        #}

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #       proxy_pass http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #       deny all;
        #}
}