1. 程式人生 > >debian apache2 修改默認路徑

debian apache2 修改默認路徑

lin col options ont block itl tar def Language

1.修改 /etc/apache2/sites-enable/000-default.conf

將DocumentRoot改成你的路徑

技術分享圖片

2.修改 /etc/apache2/apache2.conf

<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
?

將<Directory /var/www/> 改為 <Directory 你的路徑>

技術分享圖片

3.重啟apache 服務器

service apache2 restart
?

可能的問題:

403 Forbiden 或者 You don‘t have permission to access / on this server

修改你的路徑目錄權限為可讀寫

chmod -R 755  你的路徑
?

debian apache2 修改默認路徑