Hi how to remove /#!/ symbol fro the url..please advice when i click services pages..links looks like given below com/#!/content-management com/#!/contact my question is how to remove #! symbol from url why it is showing #! symbol in url Thanks in advance
Simply this // sample url $url = 'http://example.com/#!test'; // remove it $url = str_replace('#!', '', $url); PHP: It probably was set by javascript.
Uhh you might not want to remove those. And gapz101 that script will probably break their URLs. If anything you should setup rewrite rule that will eliminate them. Please read http://stackoverflow.com/questions/...hashbang-in-facebook-and-new-twitter-urls-for before you do anything to the URLs.