Hey, I'm working on a script that uses mod_rewrite pretty heavily. It's being used to direct users to dynamic pages for different categories on a page. So, right now it's functioning like this: domain.com/category-name/ For any subcategories it works the same way... just the one level. I'd like it to be able to function like this. domain.com/top-level-category/sub-category/ Make sense? This is my current htaccess file. RewriteEngine On RewriteBase / RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^([a-zA-Z0-9\-]+)/?$ sites.php?cat=$1 Post here or PM me and if you think you can solve this, we'll work together.