The Google SEO docs describe using the link element to specify the canonical page in a redirect. They don't mention anything about <meta>.
12 lines
301 B
Handlebars
12 lines
301 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Redirecting...</title>
|
|
<meta http-equiv="refresh" content="0; URL={{url}}">
|
|
<link rel="canonical" href="{{url}}">
|
|
</head>
|
|
<body>
|
|
<p>Redirecting to... <a href="{{url}}">{{url}}</a>.</p>
|
|
</body>
|
|
</html>
|