Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this is my mod_rewrite rule:

RewriteEngine On
RewriteRule ^([^./]+)/?$ index.php?id=$1 [L]

That will rewrite http://www.mysite.com/abc/ to http://www.mysite.com/index.php?id=abc. However, I also have a sub directory in there that I don't want it to be rewrite. So if a directory exist, it should just use the directory. If not it will use the rewrite. How can this be done?

share|improve this question

2 Answers

up vote 1 down vote accepted

Easy as pie:

RewriteEngine On
# Make sure it's not a real directory
RewriteCond %{REQUEST_FILENAME} !-d
# Make sure it's not a real file
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^([^./]+)/?$ index.php?id=$1 [L]

Hey by the way it took me 2s to find the answer: 2s = the time to type "rewriterule file does not exist"

share|improve this answer
you are awesome :D – Patrick Mar 22 '12 at 8:13
It was my pleasure! – Olivier Pons Mar 22 '12 at 8:17

Don't forget to include this below RewriteEngine On

RewriteBase /yourdirectory
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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