Heim > Backend-Entwicklung > PHP-Tutorial > 100分 求IIS环境和WAMP环境共存的详细解决方案!该怎么处理

100分 求IIS环境和WAMP环境共存的详细解决方案!该怎么处理

WBOY
Freigeben: 2016-06-13 11:46:23
Original
733 Leute haben es durchsucht

100分 求IIS环境和WAMP环境共存的详细解决方案!!
我们用win2003服务器, 老板希望IIS和WAMP能够共同使用80端口,不要什么停止IIS,或者换端口之类的方案,可以通过正常的URL访问的.谢谢啦!!!


我现在在IIS环境运行的状态下,apache能单独运行(换别的端口),写上 LoadModule php5_module "e:/phpweb/php/php5apache2_2.dll" 就不能运行了,网上说开启ServerName 127.0.0.1:8080 都没用啊


日志提示这个!!
[Tue Nov 05 10:17:47 2013] [warn] pid file E:/phpweb/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 183.90.186.84 for ServerName
[Tue Nov 05 10:17:53 2013] [warn] pid file E:/phpweb/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?



------解决方案--------------------
共用80端口网上有一个方案,就是麻烦点,我也实验过可以的,就是apache直接用80端口,然后再转发到IIS的其他端口
------解决方案--------------------
单IP共用80端口方法,不过不推荐,只是使用Apache的代理,速度有影响将apache设为使用80端口,IIS使用其它端口,比如81,然后将apache作为IIS的代理。

在httpd.conf里面,取消下面四行的注释:
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so

然后建立一个虚拟主机,将该域名的所有访问转向81端口。

ServerName www.abc.com
ProxyPass / http://localhost:81/
ProxyPassReverse / http://localhost:81/

大致就这样
这个是单IP的,如果多IP的就会好一点

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage