// التأكد من أن الصفحة تستخدم HTTPS if (location.protocol !== 'https:') { location.replace(`https://${location.host}${location.pathname}${location.search}${location.hash}`); } // التأكد من أن العنوان يحتوي على "www" if (location.host.indexOf('www.') !== 0) { location.replace(`https://www.${location.host}${location.pathname}${location.search}${location.hash}`); }