香港VPS xampp Apache Access forbidden! Error 403
Windows下使用xampp Apache配置虛擬主機,訪問相關網頁出現:
xampp Apache Access forbidden! Error 403
Access forbidden! You don’t have permission to access the requested object. It is either read-protected or not readable by the server.
只需要將http.conf文件中的:
AllowOverride none
Require all denied
改成:
ServerName test
Options None
Order allow,deny
Allow from all
保存重啟apache即可。