show_text
Тип редиректа «Show text»
Meta refresh
<!DOCTYPE html> <head> <meta http-equiv="refresh" content="0; URL=https://landing.com"> </head> <body> The Document has moved <a href="https://landing.com">here</a> </body> </html>
JS redirect
<!DOCTYPE html> <head> <meta http-equiv="refresh" content="1; URL=https://landing.com"> <script type="text/javascript">window.location = "https://landing.com";</script> </head> <body> The Document has moved <a href="https://landing.com">here</a> </body> </html>