我试图安装laravel 我的问题是:

/ localhost / laravel将其内容显示如它下面的文件夹。

但我期待像Laravel的徽标一样的东西,文本“你已经到了。”

我相信错误是我的路径中的东西:

return array(

/*
|--------------------------------------------------------------------------
| Application Path
|--------------------------------------------------------------------------
|
| Here we just defined the path to the application directory. Most likely
| you will never need to change this value as the default setup should
| work perfectly fine for the vast majority of all our applications.
|
*/

'app' => __DIR__.'/../app',

/*
|--------------------------------------------------------------------------
| Public Path
|--------------------------------------------------------------------------
|
| The public path contains the assets for your web application, such as
| your JavaScript and CSS files, and also contains the primary entry
| point for web requests into these applications from the outside.
|
*/

'public' => __DIR__.'/../public',

/*
|--------------------------------------------------------------------------
| Base Path
|--------------------------------------------------------------------------
|
| The base path is the root of the Laravel installation. Most likely you
| will not need to change this value. But, if for some wild reason it
| is necessary you will do so here, just proceed with some caution.
|
*/

'base' => __DIR__.'/..',

/*
|--------------------------------------------------------------------------
| Storage Path
|--------------------------------------------------------------------------
|
| The storage path is used by Laravel to store cached Blade views, logs
| and other pieces of information. You may modify the path here when
| you want to change the location of this directory for your apps.
|
*/

'storage' => __DIR__.'/../app/storage',

 );

和index.php

 require __DIR__.'/../bootstrap/autoload.php';


 $app = require_once __DIR__.'/../bootstrap/start.php';


 $app->run();
.

有帮助吗?

解决方案

这不是你的道路。您应该创建一个虚拟主机并将虚拟主机的根指向生成的root。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top