1. 程式人生 > >Laravel解決nesting level錯誤和隱藏index.php

Laravel解決nesting level錯誤和隱藏index.php

錯誤提示:Maximum function nesting level of ‘100’ reached, aborting!
解決辦法:因為我是在windows上搭建的wamp環境,linux和mac暫時還沒有實驗,首先找到php.ini找到xdebug項,在最後新增一行xdebug.max_nesting_level=500

那麼laravel如何隱藏index.php呢?
首先進入public資料夾建立.htaccess檔案,寫入

<IfModule mod_rewrite.c>
     Options +FollowSymLinks
    RewriteEngine
On </IfModule> <IfModule mod_rewrite.c> RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] ---這句話的含義是:任何訪問網站的路徑都對映成index.php/xxx,其中xxx是$1 與 (.*)中的內容進行匹配 例如我們輸入http://192.168.0.222/about -->http://192.168.0.222/index.php/about </IfModule>

然後重新啟動apache就搞定了!