ubuntu 修改apache2 默认网站目录和默认主页文档以及连接phpmyadmin
ubuntu8.10下修改apache2的默认文档目录默认是在/var/www里面
sudogedit/etc/apache2/sites-enabled/000-default
在文档中找到DocumentRoot在后面修改你要放置网页文件的目录。
修改完了别忘记重启apache2服务器
命令:sudo/etc/init.d/apache2restart
2、修改默认主页
修改默认主页:一般在sudogedit/etc/apache2/apache2.conf里面
找到DirectoryIndex在后面添加如index.php等
不过随apache2的版本不同文件的放置位置不一样我在ubuntu8.10下面配置文件就不一样。
别怕输入这个命令grep-iRDirectoryIndex/etc/apache2
查看DirectoryIndex在apache2那个文件里面。
我的就是这样的
/etc/apache2/mods-enabled/dir.conf:DirectoryIndexindex.htmlindex.cgiindex.plindex.phpindex.xhtmlindex.htm
/etc/apache2/mods-available/dir.conf:DirectoryIndexindex.htmlindex.cgiindex.plindex.phpindex.xhtmlindex.htm
为什么所2个文件都有呢。我也不清楚不过我在群里有高手说了其实2个文件关系是上面那个是下面那个的符号链接,还是一样的。随便添加默认文档就可以了。
3、连接phpmyadmin
在sudogedit/etc/apache2/apache2.conf这个文件里面添加这个语句
Alias/phpmyadmin"/usr/share/phpmyadmin/"
/usr/share/phpmyadmin/是你的phpmyadmin的安装目录服务器要连接到他。
注意:此时你可以探索有没有其他Alias有的放在一起,没有的话就在最后好了。#号表示的是注释要想生效的话。语句前面一定不能加#号。
完了测试phpmyadmin地址:http://localhost/phpmyadmin/
看看有没有看见你熟悉的界面!