【发布时间】:2014-10-15 05:05:39
【问题描述】:
我将 laravel 4.1 与 php 5.3.13 一起使用,但路由不起作用。 我在视图“about.php”下创建了一个简单的页面,并在我的路由中添加了:
Route::get('/', function()
{
return View::make('hello');
});
Route::get('about', function()
{
return View::make('about');
});
Route::resource('user', 'userInscriptionController');
Route::group(array('prefix' => ''), function()
{
Route::resource('user', 'userInscriptionController');
});
但只有“你好”页面有效,其他人给我以下信息:
Not Found
The requested URL /driving/public/about was not found on this server.
【问题讨论】: