1. 在當前框架中新建一個資料夾lee:
    mkdir  lee
  2. 進入lee:
    cd  lee
  3. 引入框架:
    composer  create-project
  4. 寫rewrite檔案:vim .htaccess

    <IfModule mod_rewrite.c>
    Options +FollowSymlinks
    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^lee/(.*)$ lee/index.php/$1 [QSA,PT,L]
    </IfModule>
  5. 瀏覽器訪問:
    your-domain/lee/module/controller/method