I followed this article and this article to optimize my Laravel website Google AMP
. My website shows different views
for different routes. For example, /
will open the index page (after binding multiple views), while the /amp
route will point to the amp version of the index page.
According to the AMP documentation, two pages should be linked to each other via canonical
and amphtml
links, like this:
<link rel="canonical" href="/article.html"> <link rel="amphtml" href="/article.amp.html">
Any ideas on providing these links for Laravel Blade since I don't have the complete .html
page. Should I add a route here? For example
<link rel="canonical" href="{{/}}"> <link rel="amphtml" href="{{/amp}}">
Generate amp pages and non-amp pages... copy the urls from the browser and insert these urls into both links accordingly