Redirect Checker

Can I use Meta refresh?

A Meta refresh is a simple type of redirect, you can define as meta tag in the head of a html. The Meta refresh redirects an user to a new URI directly or an amount of time. But can I use meta refresh for seo and user experience?

Example:

<html>
<head>
<title>meta refresh</title>
<meta http-equiv="refresh" content="1;url=http://www.redirect-checker.org/"/>
</head>
<body>
Don’t use this Meta Element.
</body>
</html>

This meta refresh means, that this html-page should redirect the use after 1 second to http://www.redirect-checker.org/.

Answer