Debian Wheezy,安装了php5 / apache,但php文件显示为纯文本

时间:2014-05-24 13:39:00

标签: php linux apache debian

我在Debian Wheezy上使用sudo apt-get install php安装了php。这安装了Apache,我创建了一个名为/var/www/index.php的文件。

但是,当我在浏览器localhost/index.php中打开时,文件显示为纯文本。有趣的是,I had tried the same thing on Ubuntu,它开箱即用,所以Debian和Ubuntu在这里有一些区别。

1 个答案:

答案 0 :(得分:2)

看起来你需要在Debian上安装后重启apache。所以在安装php时,你会这样做:

sudo apt-get install php5
sudo /etc/init.d/apache2 restart

之后,您的PHP文件将正常工作。