本文介绍了Laravel 4 除了 Home 之外的所有路由都导致 404 错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用 Composer 安装了 Laravel 4 并设置了一个虚拟主机.目前,只有根路由在工作:
I installed Laravel 4 using Composer and also set up a virtual host. Currently, only the root route is working:
<?php
Route::get('/', function()
{
return View::make('hello');
});
这不是:
Route::get('/hello', function()
{
return View::make('hello');
});
我想要点击的是 TasksController
在 /tasks
:
What I'm trying to hit is TasksController
at /tasks
:
Route::resource('tasks', 'TasksController');
这也给了我 404 错误.我可能做错了什么?我的项目根目录下有一个默认的 .htaccess 文件:
This is giving me 404 error as well. What could I be doing wrong? I have a default .htaccess file at the root of my project:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
我在 Mac 上使用本地主机.
I am using localhost on a Mac.
推荐答案
笑一笑,看看 /index.php/hello
是否有效.
Just for a laugh, see if /index.php/hello
works.
如果是这样,那么很可能是 .htaccess
问题.
If so, then most likely it's a .htaccess
problem.
这篇关于Laravel 4 除了 Home 之外的所有路由都导致 404 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!