I've an angular.js app. I have followed google's guide for ajax based applications. I've done this:
- meta tags
<base href="/">
<meta name="fragment" content="!">
- angular.js config
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix('!');
- my html links looks like this(is it wrong?):
<a ng-href="/#!/login">Login</a>
- I submitted sitemap into google search console (x months ago)
I found that I should not use escaped_fragment, is it correct? Am I doing something wrong? It's still not indexing. Google indexed just homepage.
When I run fetch as google tool it renders all pages correctly.