Using IIS Server and Wamp Server on the Same Computer

I use windows 7 and wamp server 2.2, I installed the wamp server, and I already installed the IIS server now, when I access the local host, the IIS server always loads, but I want to use the wamp server instead of the IIS server.

early

+7
source share
2 answers

If you want to run them together, you need to run it on a different port.

For WAMP / Apache, change httpd.conf

  listen 80 
on
  listen 81 
(or another unused port number). Then to access you go to
  http: // localhost: 81 / 
+17
source

In the wamp server, change your listening port to 80 to some other one, for example 8080, and start all the services basically you will find this in the apache httpd config file.

+3
source

All Articles