我必须从视图文件链接到路线,但这并不令人担忧。 错误是:找不到页面
{{URL :: route(' routename')}}
但是当我试图通过localhost / laravel / index.php / routename访问它时 然后我可以访问该文件。 我已经做好了 AllOverride all
也在httpd中取消注释这一行 LoadModule rewrite_module modules / mod_rewrite.so
答案 0 :(得分:0)
您需要为路线命名
Route::get('user/profile', array(
'as' => 'profile', // This is the route's name
'uses' => 'UserController@showProfile'
));
现在您可以拨打{{URL :: route('个人资料')}}
答案 1 :(得分:0)
你需要在C:\ wamp \ bin \ apache \ apache2.2.22 \ conf \ httpd中需要两件事 1)取消注释该行 LoadModule setenvif_module modules / mod_setenvif.so 2)将AllOverride none更改为AllOverride All
我失踪的是刀片模板系统.. 使用blade.php扩展名重命名视图文件