我在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在这里有一些区别。
答案 0 :(得分:2)
看起来你需要在Debian上安装后重启apache。所以在安装php时,你会这样做:
sudo apt-get install php5
sudo /etc/init.d/apache2 restart
之后,您的PHP文件将正常工作。