要在Ubuntu中設置Apache2的自定義目錄,您需要編輯Apache2的配置文件并指定新的文檔根目錄。以下是在Ubuntu中設置自定義目錄的步驟:
sudo nano /etc/apache2/sites-available/000-default.conf
/var/www/mycustomdir
作為文檔根目錄,那么將DocumentRoot更改為:DocumentRoot /var/www/mycustomdir
<Directory>
部分,確保指向您的自定義目錄。例如:<Directory /var/www/mycustomdir>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
sudo systemctl restart apache2
現在,您已經成功設置了Apache2的自定義目錄。您可以將您的網站文件放置在您指定的新目錄中,然后通過瀏覽器訪問它。