I have always used mod_rewrite for creating clean looking URLs, until recently I didn’t know there was any other option. A few weeks back someone on here pointed out that exactly the same effect can be achieved using apache PATH_INFO
. Thinking about it now, I assume this is what most PHP frameworks do, optionally relying on mod_rewrite purely to remove the index.php
bootstrap from the URL.
All leads to a few questions:
/page/var/foo/bar/2
?Thanks.
with pathinfo you will always have script name in the url, which looks pretty lame (and not considered valid by some agents). I'd suggest mod_rewrite as primary method with pathinfo or 404 handler as fallbacks.