I'm trying to get my head around mod_rewrite and friendly URLS.

OK, on a very basic level I have the following rule:

RewriteRule ^register$ register.php [L]

This allows me to browse to www.mydomain.com/register

The hyperlink within my pages shows register.php. Do I have to manually change my links to register?

Esentiallly, I do not want the .php extension on any of my links.

Thanks!!

link|improve this question

75% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Yes, you must manually change the hyperlinks (or use your favourite search-and-replace tool). mod_rewrite can't do this for you; it can only rewrite incoming requests, not outgoing HTML.

link|improve this answer
feedback

Yes, you'll need to change the URL in your code if that's not what you want to show up in the address bar.

link|improve this answer
feedback

Just an addition:

Note that RewriteRule ^(.*)$ /$1.php rewrites all files for you which saves you typing a lot of rules ;) Offcourse you can add more validation to it by using something like RewriteRule ^(.*)$ /index.php?pageId=$1.

link|improve this answer
Hey thank you very much for the advice. Finally getting to grips with mod_rewite! – drs Dec 6 '09 at 9:52
feedback

Your Answer

 
or
required, but never shown

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