A few people have PMed me for mod_rewrite help, so I thought I would share the answers to what they asked. That is simple. Put this in there: RewriteCond %{REQUEST_URI} !/$ RewriteCond %{REQUEST_URI} !\. RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L] Code (markup): That too, not hard if you use this for example as a guide: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/([^/]+)/?$ /directory.php?category=$1&subcat=$2 [L,QSA] Code (markup): I hope this helps a few of you