我正在尝试打开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>
我该怎么办?谢谢。
答案 0 :(得分:0)
确保您的apache安装正在侦听端口8080。
要同时侦听端口80
和8080
,请使用
Listen 80
Listen 8080