up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to redirect URLs from example.net/customname or example.net/customname/ to example.net/my/home.php?username=customname . This in itself is not complicated:

RewriteRule ^([a-zA-Z0-9_-]+)$ my/home.php?username=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ my/home.php?username=$1

However, I want to exclude my existing directories and files, such as example.net/about/ and example.net/files. I can't quite figure out how to use RewriteCond (do I need multiple rewrite conds?) in order to exclude items like example.net/about/ from being rewritten to example.net/home.php?username=about. How can I do this?

Thank you!

EDIT: Here is the exact solution...

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([a-zA-Z0-9_-]+)/?$ my/home.php?url=$1 [NC,L]
link|improve this question

Regarding your edit: why do you use two completely separate sets of rules whose only difference is a single character? It's verbose and inefficient, so I'd suggest using the option qualifier (the question mark) as localshred and I did in our answers. – David Zaslavsky Aug 20 '09 at 1:40
Quite right, I changed my answer to reflect. – Wickethewok Aug 20 '09 at 14:00
feedback

2 Answers

up vote 3 down vote accepted

RewriteCond has some special patterns for exactly this purpose. Try this:

RewriteCond %REQUEST_FILENAME ! -d
RewriteCond %REQUEST_FILENAME ! -f
RewriteRule ^([a-zA-Z0-9_-]+)/?$ my/home.php?username=$1
link|improve this answer
I've seen the -d and -f before, but didn't realize that's what they did. Thanks! I posted my full syntactically correct solution above. – Wickethewok Aug 20 '09 at 0:29
feedback

You can use a RewriteCond (rewrite condition), similar to this:

RewriteCond %{REQUEST_URI} ! ^\/(about|files)\/?$
RewriteRule ^([a-zA-Z0-9_-]+)/?$ my/home.php?username=$1 [L]

This would effectively only apply the rule if it gets through all the conditions above it, similar to using if statements.

http://httpd.apache.org/docs/2.0/mod/mod%5Frewrite.html#rewritecond

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.