我希望使用 laravel 5.1 建立一个简单的站点我有一个 ubuntu 14.10 盒子和文件 zilla。将我的应用程序文件夹的内容拖到 var/www/html/ 后,我已将 /etc/apache2/sites-availablemyapp.conf 更改为读取
<VirtualHost *:80> ServerName 104.236.27.195 ServerAlias mugendoassociationofireland.ie
DocumentRoot "/var/www/html/public"
<Directory "/var/www/html/public/">
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
我不断收到服务器错误,但指针正在工作。当我将 index.php 内容换成 'hello' 时,页面将显示此内容。知道可能缺少什么吗?