【发布时间】:2013-10-26 09:44:29
【问题描述】:
我安装了 laravel 并在 localhost/laravel/public 上获取主页。
但是不能做简单的路由。
Route::get('/', function()
{
return View::make('hello');
});
Route::get('authors',function()
{
return View::make('hello');
});
在这里,我在 localhost/laravel/public/authors 上调用了相同的视图。
但我得到了 404。
我对@987654324@ 也有不同的看法,但authors 没有
Route::get('/', function()
{
return View::make('authors');
});
Route::get('authors',function()
{
return View::make('authors');
});
现在我在/ 上获得作者的观点,但在authors 上没有。
谢谢
【问题讨论】:
-
Apache 安装了吗? ... 启用了
mod_rewrite指令? -
看看
localhost/laravel/public/index.php/authors是否有效。 -
它有效
localhost/laravel/public/index.php/authors
标签: php routing laravel http-status-code-404