我刚尝试在我的本地计算机上创建虚拟主机,但是当我尝试访问浏览器上的URL时,它会连接到互联网。我已经推迟了我的互联网并试过但它仍然没有路由到我的网站文件夹。我不知道我做错了什么。
BTW,我正在使用Apache 2.4
这是我的httpd-vhosts.conf代码。
<directory C:/auth/public>
AllowOverride All
Require all granted
</directory>
<virtualhost *:80>
DocumentRoot "C:/auth/public"
ServerName auth.local
</virtualhost>
这是我的主机代码。
#127.0.0.1 localhost
127.0.0.1 auth.local
#::1 localhost`
我在这里做错了什么?