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>