在Apache-> Apache modules-> rewrite_module下的wampserver2.5控制台中激活rewrite_module后,“正常”路由工作正常。 但是,如果我使用命名路由,则不会
<?php
Route::get('/', 'HomeController@showWelcome');
Route::get('post/listing', array('uses'=>'PostController@listing','as'=>post.listing));
Route::get('post/single', array('uses'=>'PostController@single','as'=>post.single));
?>
- ErrorException(E_UNKNOWN) 使用未定义的常量后假设'post'
<?php
Route::get('/', 'HomeController@showWelcome');
Route::get('post/listing','PostController@listing');
Route::get('post/single', 'PostController@single');
?>
以上代码有效。有任何想法吗?感谢
答案 0 :(得分:0)
Route::get('/', 'HomeController@showWelcome');
Route::get('post/listing', array('uses'=>'PostController@listing','as'=>'post.listing'));
Route::get('post/single', array('uses'=>'PostController@single','as'=>'post.single'));
注意路线名称周围的'
。