0

我正在尝试打开 localhost 的 8080 端口,但它不起作用,在我的 httpd-vhosts 存档中我有这个:

<VirtualHost *:8080>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "C:/wamp/www/demostration"
    ServerName localhost
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>

我能做些什么?谢谢你。

4

1 回答 1

0

确保您的 apache 安装正在侦听端口 8080。

要同时监听端口808080,请使用

Listen 80
Listen 8080
于 2013-07-17T05:58:09.787 回答