Laravel 溃败不工作
Laravel rout not working
我有这条路线
Route::get('/', function()
{
return 'foo';
//return View::make('hello');
//return View::make('world');
});
当我输入http://localhost/laravel/
时,它显示foo
。
但是
这次溃败
Route::get('about', function()
{
return 'foo';
//return View::make('hello');
//return View::make('world');
});
AND http://localhost/laravel/about
,我明白了
The requested URL /laravel/about was not found on this server
.
请解释一下这是怎么回事。
当您使用 link 时:localhost/laravel/index.php/about
路线有效。这意味着您正在正确定义它们。问题出在服务器端。确保您的 mod_rewrite
模块已启用。
您正在使用 Wamp。尝试按照以下说明进行操作:
http://www.anmsaiful.net/blog/php/enable-apache-rewrite-module.html
我有这条路线
Route::get('/', function()
{
return 'foo';
//return View::make('hello');
//return View::make('world');
});
当我输入http://localhost/laravel/
时,它显示foo
。
但是
这次溃败
Route::get('about', function()
{
return 'foo';
//return View::make('hello');
//return View::make('world');
});
AND http://localhost/laravel/about
,我明白了
The requested URL /laravel/about was not found on this server
.
请解释一下这是怎么回事。
当您使用 link 时:localhost/laravel/index.php/about
路线有效。这意味着您正在正确定义它们。问题出在服务器端。确保您的 mod_rewrite
模块已启用。
您正在使用 Wamp。尝试按照以下说明进行操作: http://www.anmsaiful.net/blog/php/enable-apache-rewrite-module.html