Make all URLs pointing to same page identical

Along the same lines, it is also a bad idea to point to the same page with different URLs. Say, for example, you were including a link_from parameter in the URL that pointed to the referring page. You are only using this parameter for page-tracking purposes; it does not affect content, meaning that these three URLs point to the exact same page:

http://www.mywebsite.com/get_story.asp?storyID=50&link_from=TOC

http://www.mywebsite.com/get_story.asp?storyID=50&link_from=story51

http://www.mywebsite.com/get_story.asp?storyID=50&link_from=story49

This would be a bad idea for an M-Business channel because it would treat each of these URLs as different pages, meaning it would request that story 3 times during the same synchronization. It also would not provide you with much useful information if you were trying to do this for page-tracking reasons, since it would grab every link and you would not know where the user really requested the story from.