【发布时间】:2021-05-03 19:39:21
【问题描述】:
我正在尝试在我的本地主机上提供不同的文件夹。我使用的是 Windows 操作系统。
我想在localhost:8080 上服务E:/Programming/Projects,在localhost:80 上服务E:/htdocs
我的httpd-vhosts.conf文件是这样的:
Listen 8080
<VirtualHost *:8080>
ServerName localhost
DocumentRoot "E:/Programming/Projects"
<Directory "E:/Programming/Projects">
AllowOverride All
</Directory>
</VirtualHost>
当我尝试导航 localhost:80 时,此端口运行良好。但是 localhost:8080 给出了这个错误:
403 - Forbidden
You don't have permission to access this resource.
我已经重置了我的服务器,但它不起作用。
【问题讨论】:
标签: apache xampp webserver virtualhost httpd.conf