mac如何修改apache伺服器的根目錄,即index.html到的路徑
阿新 • • 發佈:2018-11-05
眾所周知,Mac自帶tomcat,並且根目錄在/Library/WebServer/Document ,如果直接訪問localhost就會訪問到這個根目錄,但是這個目錄帶有修改許可權,那麼如何解決這個問題呢,最好的辦法就是修改apache的根目錄,下面介紹如何修改
命令 過程中需要用到
sudo apachectl start 啟動apache
sudo apachectl restart 重新啟動apache
首先修改httpd.conf配置檔案
在終端中輸入
sudo vim /etc/apache2/httpd.conf
在檔案最下面找到這句
# Virtual hosts
Include /private/etc/apache2/extra/httpd-vhosts.conf
確保Include前面沒有# 否則去掉# 儲存並且推出
繼續在終端中輸入
sudo vim /etc/apache2/extra/httpd-vhosts.conf
把80的埠修改為
<VirtualHost *:80> ServerName localhost DocumentRoot '你想要的路徑' <Directory "你想要的路徑"> AllowOverride none Require all denied Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> </VirtualHost>
儲存推出,重啟apache 現在訪問http://localhost就是你自己的路徑了