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

前端之家收集整理的这篇文章主要介绍了ubuntu14.04 apache修改网站根目录以及默认网页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

服务器端系统是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/355344.html

猜你在找的Ubuntu相关文章