LAMP服务器安装失败..在var / www / html /中复制时,localhost不会列出像codeigniter这样的目录

时间:2016-03-29 17:11:43

标签: php apache2 lamp

我已经检查过使用aptitude在ubuntu 14.04中安装了apache,mysql和php,并且都已安装。

但当(文件保存为info.php)

<?php
phpinfo();
?>

以上文件保存在var / www / html目录中,当尝试使用url localhost / info.php从broswer访问文件时,它显示为

enter image description here

问题是什么?有什么帮助吗?

2 个答案:

答案 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