WAMP 無法在本地網路上存取403 Forbidden
本地網路上WAMP 伺服器的存取問題可能會令人沮喪,尤其是在使用伺服器的IP 位址而不是本機。請依照此綜合指南解決嘗試從另一台電腦存取 WAMP 伺服器時出現的 403 禁止錯誤。
對於 WAMPServer 版本
預設情況下, WAMPServer 限制僅從本地電腦存取伺服器。若要啟用網路上其他裝置的訪問,請修改 WAMPServer 安裝目錄中的 httpd.conf 檔案。
# onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 Allow from ::1 Allow from localhost
# onlineoffline tag - don't remove Require local Require ip 192.168.0
Require local 語句允許從本地IP 位址進行訪問,包括127.0.0.1 和localhost。 Require ip 192.168.0 語句允許從 192.168.0 網路內的任何 IP 位址存取。根據您的網路配置需要調整 IP 位址範圍。
對於 WAMPServer 3 及更高版本:
對於 WAMPServer 版本 3 及更高版本,需要不同的方法。
<VirtualHost *:80> ServerName localhost DocumentRoot D:/wamp/www <Directory "D:/wamp/www/"> Options +Indexes +FollowSymLinks +MultiViews AllowOverride All Require local </Directory> </VirtualHost>
<VirtualHost *:80> ServerName localhost DocumentRoot D:/wamp/www <Directory "D:/wamp/www/"> Options +Indexes +FollowSymLinks +MultiViews AllowOverride All Require all granted </Directory> </VirtualHost>
其他故障排除提示:
以上是為什麼我在存取本機網路上的 WAMP 伺服器時會收到 403 禁止錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!