I made the static portion of a mobile website amp-compliant, but I'm unsure if there are any further steps necessary in addition to that.
In particular, is it ok (or perhaps even necessary?) to force users to load the pages over Google's CDN, by rewriting website-internal links to the CDN URL of the page? i.e. something like <a href="http_s_://cdn.ampproject.org/c/s/example.net/b.html">...</a>
? Or will that somehow mess up Google's Crawler?
In fact, I already tried it briefly, but the pages keep opening in new tabs when clicking the links, even if the current page was loaded over its CDN URL. Is that intentional? I tried using target="_top", but apparently that is disallowed for compliant amp-html.
So what is the recommended solution here?