我是 PHP 新手。我在我的 ubuntu 中安装了 MySql、PHP 和 Apache2。我有一个 web 服务 php 文件,我保存在 var/www 中。我在 var/www 中有一个名为 hello.html.Apache2 的 html 文件正在运行正确地,我使用 localhost 进行了检查,并且 hello.html 工作正常。但是在运行 php 文件时,它不起作用,并且 php 文件的所有内容都显示在我的浏览器中。任何帮助
问问题
379 次
3 回答
1
如果未安装 php,请运行此代码
sudo apt-get install php5
sudo apt-get install libapache2-mod-php5
sudo /etc/init.d/apache2 restart
并尝试
于 2012-12-19T06:53:21.337 回答
0
这意味着没有安装或配置 PHP。或者您必须将文件权限更改为只读。要重新安装它,请使用
sudo apt-get install php5
sudo apt-get install libapache2-mod-php5
sudo /etc/init.d/apache2 restart
于 2012-12-19T06:55:31.883 回答
0
看看你的/etc/httpd/conf.d/php.conf
(ubication可能会因分布而异)
确保在您的文件中有这一行,以便正确处理 php 脚本:
AddHandler php5-script .php
于 2012-12-19T06:59:46.640 回答