11.1. 框架安装
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...