Forum Moderators: open
Always, I get into trouble upholding my own standards whenever I directly link to other sites with raw ampersands (&) in their URIs. These links simply won't validate.
Simple enough you say, just replace the raw ampersands in the URIs with & and the problem is solved, document will be valid.
<a href="foo.cgi?chapter=1§ion=2©=3&lang=en">
transformed into:
<a href="foo.cgi?chapter=1&section=2&copy=3&lang=en">
But how about on the SEO side?
Won't this type of sanitized URIs lead to problems? Canonicals and dups perhaps?
Will the major SE bots be able to handle URIs like these without untoward penalty to my site or the site being linked to?