JavaScript में किसी अन्य वेबपेज पर रीडायरेक्ट करने के लिए, window.location . का उपयोग करें और वेबसाइट लिंक का उल्लेख करें, जहां आप रीडायरेक्ट करना चाहते हैं।
<html> <body> <p>Redirecting to another website</p> <script> window.location = "https://www.qries.com"; </script> <p>This page will redirect to Qries.com</p> </body> </html>