配置文件目录
```
/etc
/etc/apache2/apache2.conf
/etc/php/5.6/apache2/php.ini
/etc/mysqlmy.cnf
```
```
/etc
/etc/apache2/apache2.conf
/etc/php/5.6/apache2/php.ini
/etc/mysqlmy.cnf
```
2017-05-23
网站目录:
最新版的ubuntu server Apache默认解析的网页文件是在var/www/html下,如果要修改的话需要修改/etc/apache2/sites-enabled/000-default中的DocumentRoot的值
```
Ubuntu LTS 12中,/var/www
Ubuntu LTS 14中,/var/www/html
```
最新版的ubuntu server Apache默认解析的网页文件是在var/www/html下,如果要修改的话需要修改/etc/apache2/sites-enabled/000-default中的DocumentRoot的值
```
Ubuntu LTS 12中,/var/www
Ubuntu LTS 14中,/var/www/html
```
2017-05-23
Ubuntu LTS 12中,需要将info.php放到 /var/www 中
Ubuntu LTS 14.04中,需要将info.php放到 /var/www/html 中
<?php
echo mysql_connect('localhost','root','123456') ? '连接成功' : '连接失败';
phpinfo(); //查看php版本信息
Ubuntu LTS 14.04中,需要将info.php放到 /var/www/html 中
<?php
echo mysql_connect('localhost','root','123456') ? '连接成功' : '连接失败';
phpinfo(); //查看php版本信息
2017-05-23
sudo apt-get install apache2 php5 mysql-server php5mysql
2017-05-23