iis和apache共存时有两种方式
1、改变apache的post,假定为81。则访问时需http;//localhost;81/...
2、让两者使用不同的ip这样实际上iis和apache实际是两个网站,所以url不能简写要写全

解决方案 »

  1.   

    我的apach的端口是80
    iis的端口提8080
    两者都安装好php解释器,并且可以正常运行,
    但是就这一句跳转语句
    <? <meta http-equiv=refresh content=0;url=search1.php> ?>
    在iis下可以正常的中转到search1.php 而在apach下面就会出错,好像是找不到页面吧。
      

  2.   

    程序是在一个地方运行,肯定没有问题的,因为就这句运行出错,其它的程序正常运行,真的很奇怪,
    以下错误
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.More information about this error may be available in the server error log.
    --------------------------------------------------------------------------------Apache/2.0.44 (Win32) PHP/4.3.0 Server at dddyyy Port 80
      

  3.   

    sorry,好像不跟跳转的关系,是因为我在用get传中文时,apach不支持中文get方式,不知道如何才能
    http://dddfff.com/search2.php?id=电影&c_page=2&count=4  就会出错

    http://dddfff.com/search2.php?id=35&c_page=2&count=4  这样就不会出错了。
      

  4.   

    可能是你的apache不支持中文吧!试试下面的能解决吗?#让apache2默认中文显示 
    #添加: 
    AddLanguage zh-cn .cn 
    DefaultLanguage zh-cn 
      

  5.   

    apache2是可以显示中文的,因为apache2是不支持中文get方式传值的,不知道如何才能转换编码。