Apache 2.2整合tomcat后进行多域名跳转

在apache上做了域名设置,不整合tomcat的时候是可以的。但是把tomcat整合后,做的域名设置就不起作用了,因此只能选择其他的办法,就是在apache中做跳转设置

ProxyPass /images/ !
ProxyPass / ajp://127.0.0.1:8009/
ProxyPassReverse / ajp://127.0.0.1:8009/

 

启用 rewrite:

LoadModule rewrite_module modules/mod_rewrite.so

 

在整合tomcat后加上:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.zhwzh.com.cn.*
RewriteRule ^/$ /portal/index.htm [r]
RewriteCond %{HTTP_HOST} ^www.lytv.com.cn.*
RewriteRule ^/$ /portal/index.htm [r]
RewriteCond %{HTTP_HOST} ^md.zhwzh.com.cn.*
RewriteRule ^/$ /md/index.htm [r]
RewriteCond %{HTTP_HOST} ^md.lytv.com.cn.*
RewriteRule ^/$ /md/index.htm [r]

以上的意思是制定遇到不同的域名跳转到不同的页面

你可能感兴趣的:(Apache 2.2整合tomcat后进行多域名跳转)