There is a way to redirect using JavaScript and Metatags.
<body>
<script type="text/javascript">
location.href="https://google.com";
</script>
</body>
<head>
<meta http-equiv="refresh" content="0; url=https://google.com">
</head>
© 2024 OneMinuteCode. All rights reserved.