21 Jan
2003
21 Jan
'03
7:48 p.m.
On Tue, Jan 21, 2003 at 03:42:33PM -0000, Moore, Paul wrote:
RewriteEngine On RewriteRule ^/Zope/(.*) http://localhost:8080/VirtualHostBase/http/ukdcw5163:80/VirtualHostRoot/$1 [L,P]
and 'apachectl restart'.
I still get "Permission denied". Do I need something in Apache to say that the /Zope (virtual) directory is accessible to browsers?
No. Who's giving you "Permission denied"? Zope or apache? Beware that the rewrite-string suggested will not rewrite http://ukdcw5163/Zope without a trailing '/'. i.e. http://ukdcw5163/Zope/ You can of course change this with: RewriteRule ^/Zope(.*) http://localhost:8080/VirtualHostBase/http/ukdcw5163:80/VirtualHostRoot/$1 [L,P] -jf