ubuntu 修改apache2 默认网站目录和默认主页文档

1、修改默认网站目录
ubuntu8.10
下修改apache2的默认文档目录默认是在/var/www里面

sudo gedit /etc/apache2/sites-enabled/000-default

在文档中找到DocumentRoot 在后面修改你要放置网页文件的目录。

修改完了别忘记重启apache2服务器

命令: sudo/etc/init.d/apache2 restart
2
、修改默认主页
修改默认主页:一般在 sudo gedit/etc/apache2/apache2.conf里面
找到 DirectoryIndex 在后面添加index.php
不过随apache2的版本不同文件的放置位置不一样我在ubuntu8.10下面配置文件就不一样。
别怕输入这个命令 grep -iRDirectoryIndex /etc/apache2
查看 DirectoryIndex apache2那个文件里面。
我的就是这样的
/etc/apache2/mods-enabled/dir.conf:         DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
/etc/apache2/mods-available/dir.conf:         DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
为什么所2个文件都有呢。我也不清楚不过我在群里有高手说了其实2个文件关系是上面那个是下面那个的符号链接,还是一样的。随便添加默认文档就可以了。

你可能感兴趣的:(PHP)