14 May
2004
14 May
'04
5:08 a.m.
with apache. I want apache to answer everything except when an url goes to /blog, then I want zope to take over for that directory.
RewriteRule ^/(.*) http://127.0.0.1:8080/VirtualHostBase/http/myservername:80/blog/VirtualH ostRoot/_vh_blog/$1[L,P]
The first part of the rewriterule is the pattern it tries to match on ghe incoming url. "^/(.*)" means every url. Yours should look like something like: RewriteRule ^/blog(.*) http://127.0.0.1:8080/VirtualHostBase/http/myservername:80/blog/VirtualH ostRoot/_vh_blog/$1[L,P] Read mod_rewrite documentation. Reagrds, Sandor