* William Wueppelmann <william.wueppelm...@canadiana.ca> [2009-12-18 14:40]:
> I have the following rules configured for my virtual host in
> apache:
>
> RewriteCond %{REQUEST_URI} !^/foo/bar
> RewriteRule ^/(.*)$ /foo/bar/$1 [PT]

Btw, this is most probably not going to affect your problem, but
anyway, you likely want to lose the RewriteCond and instead have
just

    RewriteRule ^/(.*)$ /foo/bar/$1 [L,PT]


Just another mod_rewrite hacker,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

_______________________________________________
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/

Reply via email to