我正在努力获得最基本的功能,以便在Laravel上工作并且我真的很难过。我希望客户能够以www.mysite.com/laravel/public/this的形式发送请求,并从home文件夹返回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服务器上工作
答案 0 :(得分:4)
太简单了。
转到公共目录中的htaccess并更改
RewriteRule ^(。*)$ index.php / $ 1 [L]
到
RewriteRule ^(。*)$ index.php?$ 1 [L]
http://forums.laravel.io/viewtopic.php?id=1508
我简直不敢相信一个角色让我如此沮丧