State canonical URL using <link> not <meta>.
The Google SEO docs describe using the link element to specify the canonical page in a redirect. They don't mention anything about <meta>.
This commit is contained in:
parent
edda3d1b51
commit
db092a404e
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<title>Redirecting...</title>
|
||||
<meta http-equiv="refresh" content="0; URL={{url}}">
|
||||
<meta rel="canonical" href="{{url}}">
|
||||
<link rel="canonical" href="{{url}}">
|
||||
</head>
|
||||
<body>
|
||||
<p>Redirecting to... <a href="{{url}}">{{url}}</a>.</p>
|
||||
|
|
Loading…
Reference in New Issue