Hi,
Increase the loadUrlTimeoutValue from 60000 to 100000 or some other value until you get the response without getting any error.
Otherwise Try like this.
- Rename your index.html to main.html
- Create a new(dummy) 'index.html' that only have to redirect to the 'main.html'
Content of new 'index.html'
<!doctype html>
<html>
<head>
<title>tittle</title>
<script>
window.location='./main.html';
</script>
<body>
</body>
</html>
Thanks&Regards
Sridevi