将IIS和APACHE绑定到不同IP即可,不会有任何冲突
将你的网卡绑定多个IP,想架几个站点都可以

解决方案 »

  1.   

    我的机子现在支持asp,asp.net,jsp,php
    实现方法:
    iis实现asp,asp.net
    apache实现php
    apache tomcat实现jsp
    这里的设置,主要是服务占的端口问题的解决
    asp用iis设置是最简单的,打开iis,在默认网站属性里的tcp端口里设置,如80
    我的php用的是网上下的phptrial集成环境,安装后apache+php+mysql都有了
    设置服务端口是在C:\apache\conf里找到http.conf用notepad打开
    找到port 80这一行,改为port 8080
    我的jsp用的是网上下的apache tomcat
    安装时会提示输入服务端口,如8010
    在C:\Program Files\Apache Group\Tomcat 4.1\conf里找到server.xml
    里面的port 是8010可以改的如改为8000现在机器就可以同时支持这几种解析了
    访问方式
    http://localhost/index.asp或者http://localhost:80/index.asp
    http://localhost/index.aspx或者http://localhost:80/index.aspx
    http://localhost:8080/index.php
    http://localhost8000/index.jsp
    编辑相应文件的目录如果安装时是选的默认的话
    分别在:
    asp--------C:\Inetpub\wwwrootphp--------C:\apache\htdocsjsp--------C:\Program Files\Apache Group\Tomcat 4.1\webapps\ROOT
      

  2.   

    把iis的端口改一下好了,改成8080或者其它的,总之不要跟apache冲突就可以了.我的现在就是这样的.
      

  3.   

    1、不同的ip
    2、不同的端口
    3、直接让iis支持php,不要apache
      

  4.   

    我win2000的机器也装了iis(应用asp.net)、apache(应用php)和tomcat(应用servlet和jsp),都是使用默认的80端口,免得使用麻烦。由于不会同时使用asp.net、php、jsp所以只需开启一个服务就行了,用控制面版的计算机管理的服务就能轻松切换,同时启动所有服务不实际。
      

  5.   

    端口不同就行,fun说的挺详细了
      

  6.   

    端口不要用一样的就行了
    iis默认80
    apache改为其它的
      

  7.   

    设置服务端口是在C:\apache\conf里找到http.conf用notepad打开
    找到port 80这一行,改为port 8080
    好像在HTTP.CONF 里找不到
      

  8.   

    IIS and Apache Migration Tool Sets  
     The IIS Migration Tool Set of the Windows 2000 Server Resource Kit is now available for download 
    The IIS Migration Wizard migrates Web server configuration settings, Multipurpose Internet Mail Extensions (MIME) type information, and content from Internet Information Server (IIS) 4.0 or IIS 5.0 to IIS 5.0 and from Apache 1.3 to IIS 5.0. It also provides the option to migrate users and groups. The IIS Migration Wizard consists of two components, the "source" and the "target." You install the source component on the computer you are migrating from. You install the target component on the computer you are migrating to. Two different source components are included with the wizard: one for use with IIS 4.0 or IIS 5.0 and one for use with Apache 1.3.
     
    http://www.microsoft.com/serviceproviders/downloads/migration_toolsP65238.asp
      

  9.   

    可以可以,还可以和其它的WEB服务并存,只要相互之间端口不冲突就可以.
    比如IIS:80,apache:8080