On Mon, Sep 7, 2009 at 8:08 AM, Lars<sunb...@gmail.com> wrote:
> Hello list!
>
> I know basic mod_rewrite, not much, but enough to create basic rules.
>
> Now I need to create a rule that can handle this situation:
>  * Work under the root (/) folder
>  * Don't do anything under the /secure/ folder
>  * Don't do anything with *.js, *.jpg
>  * Rewrite everything else to index.php?bad_request=%URL%

this is probably close:

RewriteCond %{REQUEST_URI} !^/secure/
RewriteCond %{REQUEST_URI} ! \.(js|jpg)$
RewriteCond %{QUERY_STRING} !bad_request
RewriteRule (.*) /index.php?bad_request=$1

"If it doesn't begin with /secure, end in js/jpg, or is already
rewritten as a bad request, rewrite it."

-- 
Eric Covener
cove...@gmail.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to