We have a catalog that loads an AngularJS application dynamically according to the defined subdomain. For example: http://subdomain.billiving.biz
We need to support dynamic title that will be set by AngularJS. I saw in Google documentation that we need to add this link:
<meta name="fragment" content="!">
Anything else we should do to set this correctly?
Thanks
2
Answers
I eventually ended up using Push-State. This includes two changes:
Enabling Html5Mode:
Providing a base href from your app (when working local need full localhost path)
<base href="/">
That's it.
You have to follow HashBang URL standard or HTML5 URL
Something like
Here is the good guide to follow Angular SEO