2017-05-03 39 views
0

當試圖訪問一個網站,我試圖在我的電腦上使用WAMP主機我得到典型的錯誤代碼403禁止。我已編輯apache配置,以允許所有等,但似乎仍然得到它,但我可以看到127.0.0.1本地主機和phpadmin 任何其他建議?我可以將我的Apache配置或把它放在一個引擎收錄,如果需要錯誤代碼403當使用WAMP的自定義網站

僅供參考IM與WAMP服務器3.0.6(64倍)

我跟了來自YouTube的多個教程和計算器,但不能運行Win10(64倍)似乎得到它的工作,因爲大多數使用命令來自Linux,如'chmd'(我之前使用過的linux理解這意味着什麼,但無法解決如何通過Windows做同樣的事情)

+0

試試這個http://stackoverflow.com/questions/8204902/wamp-403-forbidden-message- on-windows-7 –

+0

chmod用於更改文件和文件夾的權限,如果權限不允許您讀取文件,則會給出403錯誤,請嘗試更改文件/文件夾的屬性權限 –

+0

@Purushotamrawat這些配置設置爲與我在這裏一樣,仍然是相同的錯誤 –

回答

0

嘗試使虛擬主持並授予所有本地用戶的訪問權限。請務必給予訪問

file -------> httpd.conf 

DocumentRoot "${INSTALL_DIR}/www" 
<Directory "${INSTALL_DIR}/www/"> 
    #onlineoffline tag - don't remove 
    Require local 
    Require ip 192.168.0 
</Directory> 

編輯的httpd-vhosts.conf像:

file ------> httpd-vhosts.conf 

# Virtual Hosts 
<VirtualHost *:80> 
    ServerName localhost 
    DocumentRoot c:/wamp64/www 
    <Directory "c:/wamp64/www/"> 
     Options +Indexes +Includes +FollowSymLinks +MultiViews 
     AllowOverride All 
     Require all granted 
    </Directory> 
</VirtualHost> 

<VirtualHost *:80> 
    ServerName smarthome 
    DocumentRoot "c:/wamp64/www/smarthome" 
    <Directory "c:/wamp64/www/smarthome/"> 
     Options +Indexes +Includes +FollowSymLinks +MultiViews 
     AllowOverride All 
     Require all granted 
    </Directory> 
</VirtualHost>