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.

Assuming I have the following file structure:

www.example.com/index.php (home page) www.example.com/about.php www.example.com/services.php www.example.com/contact.php

How can I use mod_rewrite in an .htaccess file so when the browser points to: www.example.com/about.php

the actual URL displayed will be: www.example.com/about/

However, I do not want this to apply to index.php In other words, I do not want to see: www.example.com/index/

Thanks for any help as I am about to go bat s**t insane trying to figure this out.... :D

share|improve this question
+1 for complex. Seriously. – Marko Oct 16 '10 at 3:19

1 Answer

RewriteCond %{REQUEST_FILENAME} !index.php$
RewriteRule ^(.*)\/$ $1.php [L]

edit: i guess this is better

share|improve this answer
I like it, but why the ([0-9]+)- at the beginning of the match? Also, shouldn't the RewriteCond also have an anchor to avoid matching /about/index.php? – pjmorse Oct 16 '10 at 3:33
@pjmorse: good catch ) i think he'll figure out the rest.. – Devrim Oct 16 '10 at 3:44

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.