apache re_write-mod

apache re_write-mod

请问如何写规则可以做到

把http://abc.com/test 到 http://abc.com:8082/index.html 上而不改变浏览器内的URL?


请教了!
http://bbs.chinaunix.net/viewthr ... &extra=page%3D1
谢谢!
看了一下,好像和我的要求还不太一样。

是这样的,我的服务器上有一个zope服务器,想让apache运行在它前面,这样就可以用80端口了。  点一下apache的主页面的一个链接,就rewrite到zope的8080端口上,但是要求浏览器URL不变。
试试:
RewriteRule ^/test http://abc.com:8082/index.html  [L]
RewriteRule ^index\.html$ http://abc.com:8082

我就是差不多这样做的,可是这样做后,浏览器会改变URL的显示…
[P,L]
先谢谢, 您的意思是: RewriteRule ^index\.html$ http://abc.com:8082 [P,L] ?


但是写进去后,浏览器访问说:Forbidden You don't have permission to access /redirect/index.html on this server.


Apache 2.2.3
redirect

不知道你怎么来的。
redirect是个目录,我在这个目录下建立.htaccess

Options FollowSymLinks
RewriteEngine On
RewriteRule ^index\.html$ http://abc.com:8082 [P,L]
我重新配置了一下[P]需要的proxy.conf现在 可以转进第一级zope了,但是转进去在点里面的链接就无效了,是不是重写规则的第一部分不对呢? 请教!