<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>&nbsp;&nbsp;&nbsp; If anyone can help, I'd appreciate it. I'm 
trying to setup zope to work 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. I have my rewrite rule setup as:</FONT></DIV>
<DIV><FONT size=2>NameVirtualHost *</FONT></DIV>
<DIV><FONT size=2>&lt;VirtualHost *&gt;</FONT></DIV>
<DIV><FONT size=2>ServerName myservername</FONT></DIV>
<DIV><FONT size=2>Rewrite Engine On</FONT></DIV>
<DIV><FONT size=2>RewriteLog "/var/log/apache/rewrite.log</FONT></DIV>
<DIV><FONT size=2>RewriteLogLevel 1</FONT></DIV>
<DIV><FONT size=2>RewriteRule ^/(.*) 
http://127.0.0.1:8080/VirtualHostBase/http/myservername:80/blog/VirtualHostRoot/_vh_blog/$1&nbsp; 
[L,P]</FONT></DIV>
<DIV><FONT size=2>&lt;/VirtualHost&gt;</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>Whenever I try to access my server I get: </FONT></DIV>
<DIV><!--StartFragment -->&nbsp;
<H1>Forbidden</H1>You don't have permission to access / on this server. </DIV>
<DIV>I've tried many combinations from the tutorials and I either get this or 
nothing gets passed to zope.</DIV>
<DIV>I turned mod_proxy on with:</DIV>
<DIV>&lt;IfModule mod_proxy.c&gt;</DIV>
<DIV>ProxyRequests On</DIV>
<DIV>&lt;Directory proxy:"&gt;</DIV>
<DIV>Order deny,allow</DIV>
<DIV><FONT size=2>Allow from myservername</FONT></DIV>
<DIV>Deny from all</DIV>
<DIV>&lt;/Directory&gt;</DIV>
<DIV>&lt;/IfModule&gt;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>Any ideas?</FONT></DIV></BODY></HTML>