On 1/11/08, James Bardin wrote:

> # don't catch any of our static URLs
> RewriteCond %{REQUEST_URI}  !^/moin_static160.*
> RewriteCond %{REQUEST_URI}  !^/robots.txt$
> RewriteCond %{REQUEST_URI}  !^/favicon.ico$

Is this working as expected? Because I believe there is an implicit
[AND] statement after the first two lines. And of course, it would be
impossible for {REQUEST_URI} to fulfill all three conditions.

In addition, I think you can shorten that statement to:

RewriteCond %{REQUEST_URI}  !(^/moin_static160.*|^/robots.txt$|^/favicon.ico$)

Unless I'm not grasping you purpose here... Looks like you are
intercepting requests.

-- Gnarlie
http://Gnarlodious.com/Gnarlodious

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Moin-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/moin-user

Reply via email to