本来以为上一次的配置就搞定了,结果本地测试好好的,到了服务器上调试就完蛋了,本地只测试了一个asp站和一个jsp站,而实际情况是多个asp站和我的jsp站,又试了两次还是不行,终于在第三次尝试后搞定了,写下来做个纪念。 第一次尝试使用: <VirtualHost *:80> 本以为这样设置多站点就搞定了,结果发现只识别第一个站点,访问别的站点都是这个站的内容,折腾了一上午,没成功。 第二次尝试使用: <VirtualHost *:80> LoadModule jk_module modules/mod_jk.so 这回经过查官方资料,发现了一个属性,叫ProxyPreserveHost On,试了一下,是可以用实现多个虚拟的asp站点了,但是和我的tomcat站点定义冲突,访问不了jsp站,又不行,只好再找。 第三次尝试使用: NameVirtualHost *:80 <VirtualHost *:80> LoadModule jk_module modules/mod_jk.so 经过反复看文档,这回终于搞定了,原来是没有吧”Use name-based virtual hosting.”打开,去掉NameVirtualHost *:80前面的#号就可以了,真是晕啊。 总算成功了,看来有问题还需要看官方资料啊,网友的资料还是不完整啊,通过自己的努力,发现新的线索: ProxyPreserveHost On 再次庆祝一下,自己的网站终于要开通了,欢迎访问:www.openria.cn
ServerAdmin feifei0658@sina.com
ServerName www.5hope.com
DcumentRoot “G:\5hope
DirectoryIndex index.html index.htm index.asp
ProxyPass / http://www.5hope.com:88/
ProxyPassReverse / www.5hope.com:88/
</VirtualHost>
<VirtualHost *:80>
ServerAdmin feifei0658@sina.com
ServerName www.shundabanjia.com
DocumentRoot “G:\wuyubing\www”
DirectoryIndex index.html index.htm index.asp
ProxyPass / http://www.shundabanjia.com:88/
ProxyPassReverse / http://www.shundabanjia.com:88/
</VirtualHost>
#添加了这个属性**********
ProxyPreserveHost On
ServerAdmin feifei0658@sina.com
ServerName www.shundabanjia.com
DocumentRoot “G:\wuyubing\www”
DirectoryIndex index.html index.htm index.asp
ProxyPass / http://www.shundabanjia.com:88/
ProxyPassReverse / http://www.shundabanjia.com:88/
</VirtualHost>
JkWorkersFile “D:\tomcat5.0.28\conf\workers.properties”
<VirtualHost *:80>
ServerAdmin feifei0658@sina.com
ServerName www.openria.cn
DirectoryIndex index.html index.htm index.jsp
JkMount /* ajp13
JkAutoAlias “D:\tomcat-5.0.28\webapps\ria”
<Directory “D:\tomcat-5.0.28\webapps\ria”>
Options Indexes FollowSymLinks
allow from all
</Directory>
</VirtualHost>
ProxyPreserveHost On
ServerAdmin feifei0658@sina.com
ServerName www.shundabanjia.com
DocumentRoot “G:\wuyubing\www”
DirectoryIndex index.html index.htm index.asp
ProxyPass / http://www.shundabanjia.com:88/
ProxyPassReverse / http://www.shundabanjia.com:88/
</VirtualHost>
JkWorkersFile “D:\tomcat5.0.28\conf\workers.properties”
<VirtualHost *:80>
ServerAdmin feifei0658@sina.com
ServerName www.openria.cn
DirectoryIndex index.html index.htm index.jsp
JkMount /* ajp13
JkAutoAlias “D:\tomcat-5.0.28\webapps\ria”
<Directory “D:\tomcat-5.0.28\webapps\ria”>
Options Indexes FollowSymLinks
allow from all
</Directory>
</VirtualHost>
NameVirtualHost *:80
这也是自己的收获啊,希望这些经历能帮助需要他的人。
win2003上apache2+iis6+tomcat5之多站点完美配置篇_jsp教程
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » win2003上apache2+iis6+tomcat5之多站点完美配置篇_jsp教程
相关推荐
-      通过jdbc连接oracle的十大灵活技术_jsp技巧
-      jdbc之代码重复使用_jsp技巧
-      提升jsp页面响应速度的七大秘籍绝招_jsp技巧
-      jdbc连sql server数据库步骤及有一项操作已被挂起,需重新启动计算机解决办法_jsp技巧
-      解决jsp中使用request乱码问题_jsp技巧
-      详细的jsp分页(oracle+jsp+apache)_jsp技巧
-      jsp中与标签要用不同的方式获得数据库中的数据_jsp技巧
-      jsp2.0新特性_jsp文摘