*TL;DR: *My AngularJS app (newsbrute.com, for your reference) dynamically 
generates URLs for articles like so: "website.com/posts/<article-id>", 
which are opened by clicking on the post title. Can these dynamic posts be 
indexed?

These will be permanent posts, but there's one template "post" page with 
content fetched dynamically from the article-id. Think like Reddit's 
sub-post page. Obviously I'd want users to be able to google the article 
title and land directly on the article on my site, rather than my home 
page. For them to not be able to do that is almost a death knell for the 
site as a whole.

I understand that Google can now execute javascript for indexing dynamic 
content. Is it possible for it to index these dynamic URLs, even though 
they are the same "page" in terms of the routing?

app.config(function ($routeProvider) {
  $routeProvider
    .when('/', {
      templateUrl: 'views/posts.html',
      controller: 'PostsCtrl',
      reloadOnSearch: false
    })
})

Thank you!

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to