1.修改根目錄:
在 /etc/apache2/sites-available 中修改 000-default.conf
中的DocumentRoot /var/www/ 修改為想要的目錄
比如:DocumentRoot /var/www/html/dokuwiki
修改完后重啟:sudo /etc/init.d/apache2 restart
2.修改默認網頁:
修改/etc/apache2/mods-available/dir.conf中的內容
原來是:
<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>
添加上想要的文件或路徑,優先級是從開始往后逐次讀取(無文件就讀下一個),如添加index.php、 dokuwiki
<IfModule mod_dir.c>
DirectoryIndex dokuwiki index.php index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>