Second domain for a subdomain

boomvavavoom

Verified User
Joined
Feb 24, 2005
Messages
5
Location
Vlodrop, Holland
Hello,

I have been trying to get one part of my site (which falls under subdomain http://ebas.boomvavavoom.com )to also be able to be reached via http://www.ericbasaldua.com ....

I used the DA-tool "redirect" and told the system to:

Local URL Path boomvavavoom.com/ebas.html
Redirect type 302
Destination URL: http://www.ericbasaldua.com


But it just does not seem to work.

Can anybody give me some pointers?
 
Do you own the domain? It appears to be parked at GoDaddy. If it's your domain, you'll need to either tell GoDaddy to use your nameservers, or set up nameservice at GoDaddy to direct it to your server.

Jeff
 
Do you own the domain? It appears to be parked at GoDaddy. If it's your domain, you'll need to either tell GoDaddy to use your nameservers, or set up nameservice at GoDaddy to direct it to your server.

Jeff

maybe I am a layman, but doesn't my host do this for me?

What I did was create a index.php with

Code:
<?php
header("Location: www.boomvavavoom.com/ebas.html");
?>

that did NOT work...maybe because my second domain now wants to redirect to my first domain and it falters??!!

I also made a index.html with

Code:
<HTML>
<head>
<script language="JavaScript">
<!--
 window.location="http://ebas.boomvavavoom.com";
//-->
</script>
<title>
		www.ericbasaldua.com SPONSORED by BOOMVAVAVOOM ;)
	</title>
</HEAD>
<body>
<br>
<center>Redirecting to the coolest place there is!!!
<br> or
<a href="http://ebas.boomvavavoom.com">click here</a>.</center>
</html>

</center>
</body>

</html>

but this does not even show...

strangely enough the TITLE-coding ís transfered...and the FAVICON also...but not the rest of the content...

I am outta wits here, so I am hoping someone can help... :(
 
maybe I am a layman, but doesn't my host do this for me?
Not unless you bought the domain from them and told them to do it.

But now that we know you're not a DirectAdmin owner/user, I can feel comfortable telling you that you should be asking your hosting company to help you.
What I did was create a index.php with
Code:
<?php
header("Location: www.boomvavavoom.com/ebas.html");
?>
that did NOT work...maybe because my second domain now wants to redirect to my first domain and it falters??!!
Try changing it to:
header("Location: http://www.boomvavavoom.com/ebas.html");
adding the stuff in italics.

Otherwise, check with your hosting company for additional help.

Jeff
 
I feel so DUMB now...the http:// indeed did the trick!!

Stupid!!

I must have made that mistake at some point...

But my host indeed told me that the Nameservers were set wrong, so he had to set it up again.

THANKS a zillion for taking the time!!
 
Back
Top