Need help with Wordpress "hashbang" problem

Need help with Wordpress "hashbang" problem

Hi, I'd really appreciate help with this. When I share a page URL on LinkedIn, it appends a "#!" after the slash.  When the page renders, it displays mangled.  I use Wordpress, but I'm no pro.  I tried installing a redirect plugin to send #! URL's to the source URL, but it didn't work. Is there an easy fix for this? 

Here is the page I'm having problems with specifically:   http://www.ideafaktory.com/best-articles/   Here it is with the bad URL  http://www.ideafaktory.com/best-articles/#!

I did an ugly temporary fix in my header.php, but I'm only able to redirect anything with a #! to a specific page and it triggers a page reload. Any way to modify it so that any page containing those 2 characters goes to whatever the root page is?  Here is the code I'm using:

<script>
if( window.location.hash == '#!' ) {
window.location.href = 'http://www.ideafaktory.com/best-articles/';
}
</script>

Thanks!