Laravel Lumen在子域

时间:2015-05-28 05:21:58

标签: php apache lumen

当将“Lumen应用程序”部署到“子域”(数字海洋的LAMP Ubuntu 14.04)时,我得到白屏(500 Internal Server Error)。在本地环境中,一切正常(XAMPP for Windows)。

我的.htaccess文件:

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On

    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

修改

/storage/logs处没有日志文件。我使用Git将项目拉入sobdomain(没有日志文件'因为.gitignore)。 /storage拥有0777权限。

该项目位于bitbucket:https://bitbucket.org/adlnetworks/adl-notificacioneshttps://bitbucket.org/adlnetworks/adl-notificaciones.git

请使用Develop(默认)分支。 我不知道出了什么问题。非常感谢你!

1 个答案:

答案 0 :(得分:0)

一切都很好,Lumen默认支持子域名。我忘了在生产服务器上安装composer依赖项。

问候。