Windows“hosts”文件将我的Laravel虚拟主机定向到IIS,即端口80,而不是Apache,即端口8080.我该如何解决这个问题?

I have already installed Laravel PHP framework, created a virtual host, and pointed that virtual host to "C:/xampp/htdocs/laraveldev/public" in Apache "httpd-vhosts.conf" file as follows:

`NameVirtualHost *:8080
`<VirtualHost *:8080>  
`DocumentRoot "C:/xampp/htdocs"
`ServerName localhost
`</VirtualHost>
`<VirtualHost *:8080>
   `DocumentRoot "C:/xampp/htdocs/laraveldev/public"
   `ServerName laraveldev 
`</VirtualHost> 

In Windows "hosts" file I typed:

`127.0.0.1     laraveldev

I have Apache listening on port 8080 and IIS on port 80. Windows "hosts" file directs laraveldev to port 80, i.e., IIS rather than directing it to port 8080, i.e., Apache. Can anyone help? Thanks.