All page links of my wordpress website are automatically redirecting with additional string which looks like this "/#.W6nTIaV-7pE"
eg: to .W6nWKaV-7pE
How do I make it work? Any help will be highly appreciated.
All page links of my wordpress website are automatically redirecting with additional string which looks like this "/#.W6nTIaV-7pE"
eg: https://supremeip/Trademark to https://supremeip/Trademark/#.W6nWKaV-7pE
How do I make it work? Any help will be highly appreciated.
Share Improve this question edited Dec 19, 2020 at 15:44 Glorfindel 6093 gold badges10 silver badges18 bronze badges asked Sep 25, 2018 at 6:35 J. A. Chaudhury J. A. Chaudhury 11 Answer
Reset to default 1Those aren't really redirects, the "Hash" part of a URL (the # and anything after that) are purely client side and will not trigger another request to your server.
The reason for it is AddThis. Here's an explanation as to why they are doing that: What is AddThis Click Tracking?
You can disable it by adding an option to the addthis config:
<script type="text/javascript">
var addthis_config = {
data_track_clickback: false
}
</script>
Where and how to insert this depends on how AddThis is embedded in your site.