使用 Ubuntu 14.04 将 Symfony1 项目部署到 Linode 显示黑屏

Deploying Symfony1 project to a Linode with Ubuntu 14.04 shows blank screen

我有一个运行中的 Symfony 1.4 项目托管在 Linode VPS 和 Ubuntu 12.04。由于某些原因,我必须将 Ubuntu 12.04 升级到 Ubuntu/Trusty64 14.04。当我上传我的 symfony 1.4 时,它显示空白屏幕,我已经通过 运行 php symfony cc 在 production.I 中清除了缓存,只是复制了旧的启用 Apache2 站点的配置和有效的 .htaccess在 Ubuntu 12.04

sites-available/mysite.conf

<VirtualHost _default_:80>
  DocumentRoot /var/www/mysite/web 
</VirtualHost>

这也是 .htaccesss

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
RewriteEngine On

# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /

# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#RewriteRule .* - [L]

# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ .html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f

# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]

这显示了我在尝试 Google 的 Inspect 元素时

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

知道如何解决这个问题吗?

您可能忘记启用 apache2 重写模块

sudo a2enmod rewrite
sudo service apache2 restart

希望对您有所帮助