It needs to be pointed out that this kind of trick is essentially a workaround for the awful URLs caused by the "the URL is the path of the handler" scheme that Apache and PHP like to encourage.
It's almost always a better idea to do this another way. Note that the distinction between the "handler" part of the URL, the remaining "path-like" part and the query string is already exposed in the CGI variables (SCRIPT_NAME, PATH_INFO, and QUERY_STRING). The handlers can do this magic on their own. Doing it by placing important application code into the apache configuration for the site strikes me as very confusing.
No, but mod_rewrite is not the only way of implementing it. In the mentioned case, index.php would implement a front-controller.
mod_rewrite is black magic, and will fail without suggesting why, just throwing a 500 Internal Server Error. Debugging a front controller in PHP (or whatever) it much easier.
Wow, I suppose that this is a big issue for people, isn't it. I'd forgotted since I'm using Django. Django makes you craft your URLs from the start. Granted, you can still create crap URLs if you really want to, but Django makes it harder to do.
I used to do this with my flat file PHP files, but then I started using a framework. I suggest you do too.
Kohana (PHP Framework) has pretty good URL rewriting resembling RoR's. /controller/method/variable. (/user/edit/1005 would reference application/controllers/user.php, class User_Controller, function user(1005).) POST/GET/PUT/etc are retained.
I'm part of the "I don't do this myself, but I manage people who do" crowd. It's always good to see these types of articles on here. They keep us from being totally ignorant about the mechanics of our own projects. Thanks!
An article that tells me how to use Apache is definitely worth 60+ upvotes! Honestly, I can appreciate the effort that went into this tutorial, but I would expect that a "hacker" could get this information just from reading a README or an example htaccess file.
http://forum.modrewrite.com/ has really helped me a couple of times. Just about any reasonable rewrite scenario you can think of has been asked and answered somewhere in the archive.