1, first create your own CLOUD9 application workspace, choose PHP Environment
2, delete the generated files inside,
rm README.md php.ini hello-world.php
3, installation composer
-sS https://getcomposer.org/installer | php
4, move the Composer.phar to the bin directory, convenient for global use
sudo
5. Create Laravel Project
Composer Create-project Laravel/laravel project name –prefer-dist
6. Move the generated Laravel project's sub-files to the previous directory, and then delete the generated Laravel project file
Shopt-s Dotglob
MV laravel/*./#laravel指的是生成laravel项目所有文件移动上一层目录
RM-RF Laravel #删除掉生成的aravel项目
7. In Cloud9, Apache specifies public
sudo nano/etc/apache2/sites-enabled/001-cloud9.conf
// Change this lineDocumentRoot /home/ubuntu/workspace改成下面的这个样子// To followingDocumentRoot /home/ubuntu/workspace/public
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
The above describes the CLOUD9 installation laravel51, including the aspects of the content, I hope that the PHP tutorial interested in a friend helpful.