Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过此链接中显示的方法在我的 Ubuntu 12.04 上安装 LAMP 。运行以下代码后
sudo apt-get install php5 mysql-server apache2
我应该安装 php,但是当我输入“localhost/info.php”时,它没有显示应该显示的 PHP 窗口,而是将文件下载到 Downloads 文件夹中
任何帮助,将不胜感激
重启阿帕奇。
sudo service apache2 restart
我建议您以不同的顺序安装软件包:
sudo apt-get install apache2 php5 mysql-server
我的意思是,先安装 apache,所以当安装 php 时,会自动启用 mod_php apache 模块。但是因为你先安装了 php5 包,可能是 mod_php 还没有启用。仔细检查一下。