<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Show URL</title>
    <script type="text/javascript">
        function redirectToUrl() {
            var url = document.getElementById('urlContainer').getAttribute('data-url');
            window.location.href = url.startsWith('http') ? url : 'http://' + url;
        }
        window.onload = redirectToUrl;
    </script>
</head>
<body>

<div id="urlContainer" data-url="https://h5.www66853.com"></div>

</body>
</html>