我已经检查过使用aptitude在ubuntu 14.04中安装了apache,mysql和php,并且都已安装。
但当(文件保存为info.php)
时<?php
phpinfo();
?>
以上文件保存在var / www / html目录中,当尝试使用url localhost / info.php从broswer访问文件时,它显示为
问题是什么?有什么帮助吗?
答案 0 :(得分:2)
你需要这个:
apt-get install libapache2-mod-php5
sudo a2enmod php5
sudo service apache2 restart
或者(如果你已经安装了那些)
AddType application/x-httpd-php .php
在apache的配置文件中
答案 1 :(得分:0)
除了Alex Tartan的回答,您还需要:
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php-source
</FilesMatch>
在php5.conf
这样做不是提供index.html文件等,而是提供index.php文件。
请参阅:https://serverfault.com/questions/286882/apache-is-not-interpreting-php-files