I have a question and hope someone can help me... I want it so that if someone types in /page/ the server automatically loads the content of page.php but only shows it as /page/. So whatever typed in, the server will automatically assume the content is in the equivalent filename with .php at the end. Is this possible with mod_rewrite?
Yes. You'd do something like RewriteEngine On RewriteRule ^([^/]+)/$ $1.php Code (markup): Untested, but should form a guide. Jay