[Zope] Zope and Apache

Jan-Frode Myklebust janfrode@parallab.no
Tue, 21 Jan 2003 20:48:34 +0100


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