1

我正在尝试让最基本的功能在 Laravel 上工作,但我真的很难过。我希望客户端能够以 www.mysite.com/laravel/public/this 的形式发送请求,并从主文件夹返回 home.index 视图文件,所有这些都由在laravel/application/routes.php 文件。

安装中包含的以下函数正确路由并演示 www.mysite.com/laravel/public 工作以获取用户的 http 请求并返回正确的数据

Route::get('/', function()
{
return View::make('home.index');
});

但是,只要我将“/”更改为“this”并发送请求...

Route::get('this', function()
{
return View::make('home.index');
});

我得到“未指定输入文件”。信息。这是怎么回事?我已经用 localhost 试过了,它工作正常,但我希望它在我的 godaddy 共享 php 服务器上工作

4

1 回答 1

4

它太简单了。

转到公共目录中的 htaccess 并更改

重写规则 ^(.*)$ index.php/$1 [L]

RewriteRule ^(.*)$ index.php?$1 [L]

http://forums.laravel.io/viewtopic.php?id=1508

我不敢相信仅仅一个角色就让我如此沮丧

于 2013-03-19T00:21:12.977 回答