-1

I am running Windows Small Business Server 2011 and I want to serve an Apache/PHP website from that machine, i.e. if I visit http://mylocalserver/ from within the network.

I understand that I cannot switch IIS off. I also understand that I can run PHP from IIS but I need Apache for .htaccess at the moment.

How do I get the server to serve from Apache instead of IIS?

Warwick
  • 101
  • 2

2 Answers2

0

Disable the ISS Service (World Wide Web Publishing Service), this will un-bind the service from the HTTP(S) ports.

Ben Lavender
  • 284
  • 1
  • 5
0

I'm not sue if IIS can be configured to bind exclusively to a nominated IP address but you can certainly run the Apache instance on a different port.

symcbean
  • 21,009
  • 1
  • 31
  • 52
  • I am running Apache on a different port, which works locally, i.e. requesting `http://localhost:2016/` on the server itself, but not remotely. `http://mylocalserver:2016` from another machine just times out. – Warwick Aug 31 '16 at 09:49
  • Then change your firewall. – symcbean Aug 31 '16 at 14:26