主  题: Apache URL转发问题
作  者: peng02chen ()        Blog
等  级:
信 誉 值: 100
所属社区: Web 开发 Apache
问题点数: 100
回复次数: 6
发表时间: 2006-10-27 16:36:10
apache中url转发: 我配置的apache中有 RewriteCond %{HTTP_HOST} ^www\.abc\.cn$ RewriteRule ^/$ http://www\.abc\.cn/html/haohao/index.html [R]. 转发成功,地址栏显示的是 http://www.abc.cn/html/haohao/index.html. 我想实现转发后地址栏显示的是http://www.abc.cn怎么做? 请高手上来指教?
Unending(看分答题) ( ) 信誉:99    Blog 2006-10-27 16:39:43 得分: 0
 
关注中..
Top
marse(阿彪) ( ) 信誉:87    Blog 2006-10-27 17:05:46 得分: 0
 
RewriteCond %{HTTP_HOST} ^www\.abc\.cn$ RewriteRule ^/$ http://www\.abc\.cn/html/haohao/index.html http://www.abc.cn [R].
Top
zzd8310(东北笑笑生)(经常被模仿,从未被超越!||我之所以把昵称写这么长。就是想看看昵称到底能写多长,真是长) ( ) 信誉:100    Blog 2006-10-27 19:12:47 得分: 0
 
同意楼上
Top
peng02chen() ( ) 信誉:100    Blog 2006-10-30 15:29:04 得分: 0
 
楼上的那样修改有些问题,我自己试了试现在搞定拉。 RewriteCond %{HTTP_HOST} ^www\.abc\.cn$ RewriteRule ^/$ http://IP/html/haohao/index.html [P]. 这样就达到了想要的效果。 这只是试出来的,ip与配置的www.abc.cn这个不同等,不太理解。
Top
yunfeifan(云飞凡) ( ) 信誉:94    Blog 2006-11-2 10:03:10 得分: 0
 
应该多看一下 最后的参数[ ].
Top
zhuangwei517() ( ) 信誉:100    Blog 2006-11-6 13:57:23 得分: 0
 
听到的都是Apache URL的转发,不知道tomcat有没有url转发功能,谁知道不?