Forum Moderators: martinibuster
Before:
all web pages are linked as "page.asp?aid=****x" (xxx is from 1 to 150,000). Because the levels are very deep so google only indexed no more than 500 pages.
Now:
I am trying to use URL rewrite technologies to rewrite the internal links (no matter what kind of structures I use, the final page for the webserver is still page.asp?aid=xxxx"). With URL rewrite, I can have many many options on the strucutures of the internal links but I think the following two are better:
option 1:
domain.com/leve1/level2/level3/level4/level5.asp; level1, level2 are the parent id; The real link showed on the page will like:
domain.com/0/1222/3444/8900.asp
option 2:
domain.com/parentid/thisartileid.asp; real link just like
domain.com/3444/8900.asp
in option 1, the internal links will have as many folders as the levels; in option 2, no matter how deep a page are, the link only has two levels: parent id and the article id.
Which strategy is better? option 1 or option 2
Currently the links in site maps are organized in the way of option 2, but the links on real pages are written in the way of option 1.
Appreciate your help!