meta tag redirect

I accidentally found that meta tags can also be redirected today.

A new knowledge point has been added.

<meta http-equiv="refresh" content="5;url=重定向的路径">

注:5为时间,5秒.意为在当前页面停留5秒后跳转到重定向的页面.也可设置为0,打开页面后直接跳转.

eg:<meta http-equiv="refresh" content="5;url='https://www.baidu.com'">

Because this function is not controlled by the user, you should also be careful when using it.

Guess you like

Origin blog.csdn.net/qq_37514029/article/details/107493307