Hey All, Here is my htaccess file: RewriteEngine On RewriteBase / RewriteRule ^categories/(.*)$ view_categories.php?s=$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) view_question.php?s=$1 So basically how it works is: mydomain.com/questions This loads the index file - From here the user clicks on a question that is linked to like: mydomain.com/questions/question-title-slug This works great... Now when I add the categories... it loads the page however htaccess redirects it like 15 times before the page loads. Am I doing this right??