我是Laravel的新手,我正在尝试重现quickstart指南,但我没有让它发挥作用。
我在Linux(Debian)中运行本地Apache服务器
这是我的安装网址:http://localhost/laravel_blog
我测试添加到.htaccess,但没有工作
RewriteBase /laravel_blog/
我的路线就像在快速入门指南中指出
Route::get('/', function () {
return view('tasks', [
'tasks' => Task::orderBy('created_at', 'asc')->get()
]);
});
我读了这些stackoverflow答案,但解决方案对我没用。
Laravel quick start guide route not working
laravel when going to address I see folders, not starting the app
如何在laravel路线上工作?
答案 0 :(得分:2)
在您创建项目的文件夹中,您可以运行php artisan serve
并浏览到localhost:8000