mod_rewrite (May 25 2007)
Mod_rewrite is an amazing apache module and really helps when promoting your site.
Instead of using www.yourname.com/index.php?show=pictures you can setup urls like www.yourname.com/pictures which will show the same result as index.php?show=pictures.
This is accomplished by using mod rewrite. Heres an example:
RewriteEngine on
RewriteRule ^([A-Za-z]+)/?$ http://www.yourname.com/index.php?show=$1