I have an angular.js application. I followed the google guide for ajax based applications. I have done this:
<base href="/">
<meta name="fragment" content="!">
- angular.js config
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix('!');
- My html links look like this (is this wrong?):
<a ng-href="/#!/login">Login</a>
- I submitted a sitemap to the Google Search console (x months ago)
I found that I should not use escaped_fragment, is this correct? Am I doing something wrong? It is still not indexed. Google indexed only the home page.
When I run fetch as a Google tool, it displays all pages correctly.
source
share