1. LAMP 的安装
3. Apache 配置
(1)启用 mod_rewrite 模块
终端命令:sudo a2enmod rewrite
(2)重启Apache服务器:sudo /etc/init.d/apache2 restart
4. 测试PHP 运行环境
/var/www/ 目录下创建 phpinfo.php
内容如下:
<?php phpinfo();?> <?php dir();?>
验证安装环境是否符合要求。
错误处理:
我系统发现Ngnix占用了80端口,
sudo /etc/init.d/nginix stop 停掉ngnix 服务
2. 浏览器PHP中文乱码问题
则是默认语言设置问题,解决方法如下:
打开apache配置文件: sudo gedit /etc/apache2/apache2.conf,在最后面加上:AddDefaultCharset UTF-8,如果还是乱码的,再将UTF-8改用gb2312。
重启Apache:sudo /etc/init.d/apache2 restart 中文乱码没有了
3. apache2: Could not reliably
determine the server‘s fully qualified domain name,
... waiting apache2: Could not reliably determine the server‘s fully qualified domain name, using 127.0.1.1 for ServerName
解决的问题是:
sudo vim /etc/apache2/sites-available/default
打开default文件后,在default文件顶端加入:
ServerName 127.0.0.1
重启apache2 就不会提示上述错误了
4. 让apache、php支持mysql
sudo apt-get install libapache2-mod-auth-mysql
sudo apt-get install php5-mysqlsudo /etc/init.d/apache2 restart
原文地址:http://blog.csdn.net/winceos/article/details/28624943