I'm using Apache Mod RewriteRule to deal with dynamic URLs. And trying to figure out the best URL structure to go with.
Here are the options I am thinking about:
They will all rewrite to: mydomain.com/myprogram.php?username=$1&cat=$2&item=$3
Option 1: mydomain.com/username-category-item-5.html
Option 2: mydomain.com/username/category-item-5.html
Option 3: mydomain.com/username/category/item-5.html
My concern is with how the search engines will crawl and index the pages. If I use option 1 all users files will appear to be in the same directory. Will this make the search engines index only a limited number of the pages?
And if I go with option 2 or 3 what is a safe number of sub directories to use when optimizing for search engines?