Forum Moderators: Robert Charlton & goodroi
GOOD:mysite.com/albumname/subalbumname/imagename.jpg.html
BAD:mysite.com/albumname/subalbumname/imagename.jpg.html/?g2_enterAlbum=0
Is the additional "/?g2_enterAlbum=0" string really enough to cause problems with indexing the site? Thanks
If the content at that URL is the same as the content returned for some other URL, then you do have duplicate content and you will have a lot of problems.
Every URL that returns content and a "200 OK" HTTP response gets indexed. Your job is to only allow one URL for each piece of content.
What if one of your users likes a page of content on your site, and links to it, and then another user (using a different theme) also likes that page, and uses the URL in their browser URL bar to cut and paste a link to your page from/on their own web site?
You now have two incoming links that return the same content, but using two different URLs for that content. Both will be indexed. One will then get at least partially filtered, taking its PR with it.
You need the site to return "200 OK" for one URL, and either a 301 redirect for all other URLs, or a noindex meta tag. You must keep all of the alternative URL copies out of the index.
I would really appreciate advice on the best way to proceed as I don't want to create bigger problems for myself by trying to correct a smaller one! :-) Thanks.
My question now that I have finally gotten apache mod rewrite working correctly as I had a multisite install, is do you or anyone else know the implications, if any of using mod_rewrite to make the urls "nice". Will google index the pages now? I've heard some people say yes and others say no... and I'm totally confused now :)