我已經使用Laravel Boilerplate開發我的應用程序。除此之外,我已經安裝了L5Modular。所以我定義路由就像我的模塊Laravel BoilerPlate:定義路線
<?php
Route::group(array('module' => 'test', 'middleware' => ['web','auth'], 'prefix'=>'frontend','namespace' => 'App\Modules\test\Controllers'), function() {
Route::resource('test', 'TestController');
});
內下列但是當我試圖訪問路線http://localhost/blog/public/test/create它顯示404錯誤。
爲什麼我的路線沒有被訪問?有沒有定義路線的錯誤?
Laravel不支持安裝在一個子目錄開箱即用,你需要自定義'.htaccess'文件。 – apokryfos
你可以請嘗試http://localhost/blog/public/index.php/test/create –
你還需要顯示'TestController'的內容 –