在debian 7.5上部署laravel 5,使用apache2来托管

时间:2016-04-19 10:42:33

标签: laravel debian apache2

我需要帮助在debian 7.5上部署laravel 5项目,我不知道问题出在哪里。 我的主机配置如下:

<VirtualHost *:80>

        ServerName stockhit.com

        ServerAdmin webmaster@localhost

        DocumentRoot /var/www/stockhitsite/public

        ErrorLog ${APACHE_LOG_DIR}/stockhiterror.log
        CustomLog ${APACHE_LOG_DIR}/stockhitaccess.log combined
        <Directory /var/www/stockhitsite/public>
                DirectoryIndex index.php
                Options Indexes MultiViews FollowSymLinks
                AllowOverride All
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>

当我通过网址访问网站时,默认的laravel欢迎页面没有显示,实际上它显示了 /public/index.php 文件的内容 请帮助我,我被困在这里几天,提前谢谢。

1 个答案:

答案 0 :(得分:1)

问题是您的服务器上未启用PHP。打开Apache配置文件(通常是/etc/apache2/httpd.conf)并取消注释此行或类似行:

#LoadModule php5_module libexec/apache2/libphp5.so