virtual host 2 is loading instead of vhost1

#1
I have been banging my head against the wall for the past couple of hours. I have a total of 3 websites on a server. 2 are working fine but the third is actually forwarding to one of the other ones when i type its domain in the url bar.

I have checked the DNS records and everything looks fine. Ive deleted the .htaccess file thinking maybe that had something to do with it.

I am at a total loss. Anyone have any pointers?

Domain is wireband.net but for some reason its forwarding to whatadifferenceky.com
 
Last edited:

NiteWave

Administrator
#2
Domain is wireband.net but for some reason its forwarding to whatadifferenceky.com
no redirect seen:
Code:
[root@globalsupport ~]# curl -i wireband.net
HTTP/1.1 200 OK
Server: nginx
Date: Mon, 25 Oct 2021 01:04:39 GMT
Content-Type: text/html
Content-Length: 432
Connection: keep-alive
last-modified: Wed, 25 Aug 2021 03:32:53 GMT
etag: "1b0-6125b9e5-d5d8f28bbd365a71;;;"
accept-ranges: bytes
x-turbo-charged-by: LiteSpeed

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Web Server's Default Page</title>
    <meta name="copyright" content="Copyright 1999-2021. Plesk International GmbH. All rights reserved.">
    <script src="https://assets.plesk.com/static/default-website-content/public/default-server-index.js"></script>
</head>
<body>
    You see this page because there is no Web site at this address.
</body>
</html>
 
Top