ubuntu14.04 apache修改网站根目录以及默认网页

服务器端系统是ubuntu 14.04
修改根目录:
在 /etc/apache2/sites-available 中修改 000-default.conf
中的DocumentRoot /var/www/ 修改为想要的目录
比如:DocumentRoot /var/www/html/mainpage

ubuntu14.04 apache修改网站根目录以及默认网页_第1张图片

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

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

.c>
    DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm 

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

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

你可能感兴趣的:(web)