我得到一個非常奇怪的錯誤使用laravelLaravel - 查看:請工作不正常,包括外部文件
Route::get('/', function()
{
return View::make('index');
});
它加載內部視圖在index.php當正確
但
當我有類似http://localhost:8000/xyz
(不存在),然後它也路由到index.php和所有js文件得到正確加載,但當我轉到http://localhost:8000/xyz/abc
(不存在)
這不加載JS文件正確,我的頁面呈現,錯誤
App::missing(function($exception)
{
return View::make('index');
});
我的應用程序缺少的功能。
爲什麼會發生這種情況。
更多這個我有另一個laravel實例,並沒有給這樣的問題,也可以處理
http://localhost:8000/xyz/abc/ahbfd/dfdfd/dfdfd
(不存在)
沒有任何錯誤。
希望我很清楚。
你在'/ start/global.php'中嘗試了'App :: error'嗎? – 2014-12-19 11:09:37
應用程序錯誤已經存在 '應用::錯誤(函數($例外例外,$代碼) { \t日誌::錯誤($除外); });' – AngularDev 2014-12-19 11:11:25