2014-05-06 39 views
4

我的電腦是windows 8.1和Linux mint 16雙啓動電腦。我在Linux Mint上創建了本地Web服務器。它的文檔根目錄是「/var/www".But all my我的項目位於我安裝到Linux並使用(/ media/randika/HardDisk/Works/Lab)的NTFS部分。我需要製作一個符號鏈接到項目文件夾或更改Apache服務器的文檔根目錄。我該如何做? `在Linux上更改Apache Web服務器的文檔根文件夾

我位於站點可用的文件夾000-default.conf文件

<VirtualHost *:80> 
# The ServerName directive sets the request scheme, hostname and port that 
# the server uses to identify itself. This is used when creating 
# redirection URLs. In the context of virtual hosts, the ServerName 
# specifies what hostname must appear in the request's Host: header to 
# match this virtual host. For the default virtual host (this file) this 
# value is not decisive as it is used as a last resort host regardless. 
# However, you must set it for any further virtual host explicitly. 
#ServerName www.example.com 

ServerAdmin [email protected] 
DocumentRoot /var/www 

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn, 
# error, crit, alert, emerg. 
# It is also possible to configure the loglevel for particular 
# modules, e.g. 
#LogLevel info ssl:warn 

ErrorLog ${APACHE_LOG_DIR}/error.log 
CustomLog ${APACHE_LOG_DIR}/access.log combined 

# For most configuration files from conf-available/, which are 
# enabled or disabled at a global level, it is possible to 
# include a line for only one particular virtual host. For example the 
# following line enables the CGI configuration for this host only 
# after it has been globally disabled with "a2disconf". 
#Include conf-available/serve-cgi-bin.conf 
</VirtualHost> 

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet 

回答

-1

修正它。當安裝分區,Linux會自動設置對該分區中的所有文件和目錄的權限。掛載後權限無法更改。因此,卸載該分區,將etc/fs中的umask值更改爲022標籤並創建了一個符號鏈接。一切正常。

5

只需將您的虛擬主機

內改變
DocumentRoot /var/www 

DocumentRoot /media/randika/HardDisk/Works/Lab 

,並添加新的目錄

<Directory "/media/randika/HardDisk/Works/Lab"> 
    Order Allow,Deny 
    Allow from all 
    Options Indexes 
    AllowOverride AuthConfig 
</Directory> 

的權利和重新啓動Apache進行重新加載配置

+0

Thanks @ Bugs ..但它給出403禁止的錯誤。「您沒有權限訪問/在此服務器上。」 – Randika

相關問題