Mobile app version of vmapp.org
Login or Join
Murphy175

: How to make my angularjs + Django web application SEO friendly? I'm working on a web application that will allow users to create a dedicated page for them like www.example.com/john.doe So the

@Murphy175

Posted in: #AngularJs #Django #Seo

I'm working on a web application that will allow users to create a dedicated page for them like example.com/john.doe
So the structure I've come up with is this:


Landing Page: Pre-rendered at server with no Angularjs
Application: Built with AngularJs
User Pages: Pre-rendered at server with no Angularjs


Is this design correct and necessary if I want my landing page and the users' dedicated pages to be crawled?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murphy175

1 Comments

Sorted by latest first Latest Oldest Best

 

@Berumen354

There is nothing stopping you from building the entire site in AngularJS. For tthe last few years Google has been able to analyse the javascript and CSS on a site to identify the more interactive elements and javascript generated content for crawling purposes. A number of sites these days are built entirely on top of AngularJS without the need to have various pages being entirely generated on the server side (including a very large highly ranking Australian business listings site very similar to what you are proposing). What you are proposing with a landing page and user pages being rendered server side will work but there is no requirement to do so and you could quite easily build the entire site with AngularJS without any greater SEO issues than you would encounter by having certain pages generated server side.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme