红联Linux门户
Linux帮助

Ubuntu 14.04下Apache修改网站根目录及默认网页

发布时间:2015-07-29 10:10:39来源:linux网站作者:linux人

Linux服务器端系统是Ubuntu 14.04。


修改根目录:
在 /etc/apache2/sites-available 中修改 000-default.conf
中的DocumentRoot /var/www/ 修改为想要的目录
比如:DocumentRoot /var/www/html/mainpage

接下来重启apache,sudo apache2ctl -k restart 即可


修改默认网页:
修改/etc/apache2/mods-available/dir.conf中的内容
原来是:

<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>

添加上想要的/wordpress就行啦。

<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm /wordpress
</IfModule>


Ubuntu 14.10下Apache的安装配置:http://www.linuxdiyf.com/linux/12223.html

在Ubuntu 14.04 LTS系统中设置Apache虚拟主机:http://www.linuxdiyf.com/linux/10614.html

Ubuntu 14.04中Apache 2.2升级到2.4后的几个要点:http://www.linuxdiyf.com/linux/10231.html

Ubuntu 14.04下安装Apache+ModSecurity:http://www.linuxdiyf.com/linux/10204.html

如何在Ubuntu 14.04上为Apache 2.4安装SSL支持:http://www.linuxdiyf.com/linux/10154.html