skip to Main Content

Angular.js and SEO

I'd like to create a site with Angular (I'm new), but also want to be able to have different "views" be cachable in the search engines and have their own URL routes. How would I achieve this with Angular, or…

VIEW QUESTION

AngularJS multilanguage URL routing with links – SEO

I have an AngularJS webapp. I´m changing the application so the URLs can be multilanguage (for SEO indexing purposes). I´m setting up my app.js, like this: $routeProvider.when('/:language', {templateUrl: 'partials/home.html', controller: 'HomeCtrl'}); $routeProvider.when('/:language/about', {templateUrl: 'partials/about.html', controller: 'AboutCtrl'}); Then, in a service…

VIEW QUESTION

AngularJS multilanguage routing – SEO

I have an AngularJS webapp. I´m changing the application so the URLs can be multilanguage (for SEO indexing purposes). I´m setting up my app.js, like this: $routeProvider.when('/:language', {templateUrl: 'partials/home.html', controller: 'HomeCtrl'}); $routeProvider.when('/:language/about', {templateUrl: 'partials/about.html', controller: 'AboutCtrl'}); Then, in a service…

VIEW QUESTION

Angular and SEO indexing

I am struggling to find a complete, definitive and up-to-date answer to the Angular SEO problem. I have an Angular app that has a single main template index.html with multiple views. Views are handled like so: app.config(["$routeProvider", function($routeProvider) { $routeProvider…

VIEW QUESTION
Back To Top
Search