I never see a link+bookmark listed in Google though.
I have a dynamic page, something like this:
http://www.testsite.com/notes.php?id=45
And I'm working on making it a static link, something like
http://www.testsite.com/notes/id/45
But, this screws up a lot of the html because of relative paths, so I had an idea maybe I could do something like this
http://www.testsite.com/notes.php#45
And the PHP would render the proper content based on the bookmark. But, how is Google going to treat this? If it comes across
http://www.testsite.com/notes.php#45
and then
http://www.testsite.com/notes.php#62
and each page is completely different, will Google see those as seperate pages or will it just see "notes.php" and cache whatever is the last link visited?
If that's the case, then it's a pointless project and I'm better off risking it with the sessions ID's.
|