If you were doing a 301 redirect going from a hash bang to another page on the same site, how would you personally do it please? I tried the below, but got a 500 server error:
RewriteEngine on
RewriteRule ^for_map/#!?$
http://www.websiteaddress.co.uk/for_map [R=301,L]
This is impossible. Hashes are never sent to the server. They’re only for browser.
The only way to proccess the hash is to use Javascript or other client-side language.