For some reason my rewrite engine is adding a random hash to the end of my links such as: #.UHyohWmDRhA
RewriteEngine On
RewriteRule ^about/$ about.php [NC]
So what I expect is localhost/company/about/. What I get is localhost/company/about/#.UHyohWmDRhA. Anyway to get that to stop?
EDIT————————
Well I did not debug this well enough. My apologies. All of my links are generating this strange hash. Will have to investigate further.
EDIT.2————————
My mistake. I have an addthis widget on my headers which is adding the hash. Will answer in 2 days for whatever it’s worth.
Addthis widget was causing the hash.
Edit————-
The site I’m working on has an addthis.com plugin to share the site. There was an option in this plugin which tracks when someone copies and pastes the link somewhere. The hash is what is used to track this copy/paste action. You can remove the line in the plugin to remove this option (or keep it).
TL;DR: Check your script plugins if your url is being modified.