我需要将文档根目录更改为其他内容。
例如我希望我的root为〜/ Dropbox / www而不是/ var / www / html
要实现这一点,我已经更改了我的/etc/apache/sites-availabl/000-default.conf文件 到
<VirtualHost *:80>
ServerName localhost
ServerAdmin webmaster@localhost
DocumentRoot ../../home/ahmar/Dropbox/www/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
当我重新启动服务器时似乎很好
但是当我打开我的localhost时
它给了我一个禁止的错误 有了这条消息禁止
您无权访问此服务器上的/。
localhost端口80上的Apache / 2.4.7(Ubuntu)服务器
答案 0 :(得分:0)
尝试放置
&#34; DocumentRoot / home / ahmar / Dropbox / www /&#34;
它应该解决问题。 :)