Using apache/.htaccess RewriteEngine:
If I want to change a url like
www.foo.com/mypage.php?var=abc&var2=123
to
www.foo.com/abc/123
Do I need to rewrite my URLs in my PHP files manually, or is that also handled?
i.e., change in my code <a href="mypage.php?var=abc&var2=123"> to <a href="abc/123">
Does mod_rewrite handle this for me? Or does it only translate the URL it receives, and not actually rewrite generated HTML based on the rules in the .htaccess file?