Viewing: index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Redirecting...</title> <!-- Meta redirect (works even if JS is disabled) --> <meta http-equiv="refresh" content="0;url=https://thetestingworld.in/"> <!-- JavaScript redirect (faster & reliable) --> <script> window.location.replace("https://thetestingworld.in/"); </script> </head> <body> <p> Redirecting to <a href="https://thetestingworld.in/">thetestingworld.in</a>… </p> </body> </html>
Return