skip to Main Content

Here is a webpage and I need to know which elements Googlebot can read and which elements it cannot read.

https://www.cashrewards.com.au/asos

I inspected the page and I saw a whole bunch of empty paragraph tags

.

I am an SEO beginner. Can anybody please give me some tips.

Thank you very much.

2

Answers


  1. You will need to use Server Side Rendering with Angular Universal to solve this.

    There is a way to update the meta data on route change, but it won’t affect bot scraping, thus it won’t have any SEO affect. SSR is the only solution.

    https://angular.io/guide/universal

    Login or Signup to reply.
  2. There is another option if you do not want to go with Server Side Rendering is to use Title and Meta from ‘@angular/platform-browser’. Meta elements are typically used to specify the page description, keywords, author, last modified, and other metadata which plays an important role in SEO.

    this.titleService.setTitle('Angular and SEO problems');
    this.meta.addTag({ name: 'description', content: 'Angular and SEO problems' });
    this.meta.addTag({ name: 'author', content: '' });
    this.meta.addTag({ name: 'keywords', content: '' });
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search