Lofesa commented on issue #1720: URL: https://github.com/apache/incubator-pagespeed-ngx/issues/1720#issuecomment-766984205
1.- You have this html code: ``` <link rel="canonical" href="https://uhl.site/" /> <script type="application/ld+json">{"@context" : ``` and have enabled: cj Move Css Above Scripts cm Move Css To Head So css are inlined before the 1st script tag. Put all script tag at the bottom of the head section. 2.- How canonnical work, you can have 2 or more url with the same canonical, so bots (like Google bot) can index, and show in search, only the canonnical, w/o penalize with duplicate contents. For example amp pages. An amp page has the same content as the normal page, w/o canonical, google can penalize these pages (amp and normal) with duplicate content. You have the oposite, 1 url (htttps://uhl.site, in the navigation bar) and 2 canonical (https://uhl.site and https://uhl.site/de). What page must be indexed by bots? For having sites with different languages you must tell to search engines that a page have related pages for diferent languages, this can be achieved by diferent paths: htl code, http headers or sitemaps. Read about this here: https://developers.google.com/search/docs/advanced/crawling/localized-versions?hl=en ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org