How to bring wamp server online?

后端 未结 3 924
生来不讨喜
生来不讨喜 2021-02-06 09:25

I have already tried port forwarding through router and also disabled my firewall. I also edited httpd.conf. There I changed

Listen 80

to

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-06 09:36

    I got the answer at here.

    The part I missed in other solution was the Configurtion below:

    Configuring the server to be reachable by everyone

    The last step! Open your httpd.conf and find this line:

    ServerName localhost:80
    

    Change it to:

    ServerName :80
    

    Example:

    ServerName 192.168.1.27:80
    

提交回复
热议问题