Hi all, I'm used to PHP/Linux and I'm just looking at the optimisation of a site built with an ASP.net CMS. The system allows upper case to be used in urls and as a result lower and upper case have both been used to name folders and files; the result is that Google has managed to index Folder/some-pages as well as folder/some-pages and so there is duplication.
I'd like to clear this up, but have no idea what to recommend the developers do or a direction to point them in to find a solution.
One possible idea was to get only one version of each url to be 'valid' and the others return a 404, then use WMT to remove the 404s (that is of course if Google will recognise the difference between upper and lower case) and wait for Google to reindex.
Because IIS (at least in this case) allows you to type /a-FolDer/A-PaGe.aspx for example not sure how to go about this.
Or perhaps there an IIS module that deals with this? Something that knows the correct lower case url and forces a 301 to it from any urls with upper case in them?
Anyone come across this before?