我使用的是Ubuntu 14.04LTS。以下是我到目前为止所做的事情:
I have installed composer using curl,
move this composer.phar file to usr/local/bin directory
Created project laravel in my root folder i.e. var/www/html
Change the permission of app/storage folder.
Created the file name as laravel.conf like 000-default.conf in etc/apache2/site-avaliable directory.
edit that laravel.conf file from terminal and save that file.
disable 000-default.conf file and enable laravel.conf file.
restarted the apache2 service.
这是我的问题:现在我正在尝试从我的localhost运行它,但它没有显示我项目laravel的index.php页面。
任何对此进行排序的帮助都将受到高度赞赏。
答案 0 :(得分:1)
Laravel基于您的控制器构建自己的输出,通常使用视图文件(刀片)作为模板。除非您在控制器中明确告诉它,否则它不会返回静态或动态index.php页面。如果这是您的第一个Laravel项目,我建议您阅读http://laravel.com/docs/5.0/routing的路由工作方式。