I'm trying to use AngularJS $location to set the browser's url, like this:
$location.path("/post").search({
id: post.id
});
but whenever I do the url gets set like http://localhost:5000/#!/post?id=0 instead of http://localhost:5000/post?id=0
Is there any reason the #!/ shows up?