Hey People,

I have a quick question which i think is pretty simple but just wanna chack with you guys.

Im creating a site called www.mobilefantastic.com. The client also owns mobilesfantastic.com and mobilefantastic.co.uk. www.mobilefantastic.com is the domain where the content will be, but i want to set up an automatic divert so if someone was to miss spell the domain as mobilesfantastic or mobilefantastic.co.uk, they will automatically be sent to www.mobilefantastic.com.
Does that make sense?

Thanks a lot
GR Web FX

Recommended Answers

All 2 Replies

Im creating a site called www.mobilefantastic.com. The client also owns mobilesfantastic.com and mobilefantastic.co.uk. www.mobilefantastic.com is the domain where the content will be, but i want to set up an automatic divert so if someone was to miss spell the domain as mobilesfantastic or mobilefantastic.co.uk, they will automatically be sent to www.mobilefantastic.com.

If understand you, you whant to redirect mobilesfantastic.com and mobilefantastic.co.uk to mobilefantastic.com.. What you have to do is to put on both pages code which is bellow with some sensible message

<meta http-equiv= "Refresh"
      content   = "2; URL=http://www.mobilefantastic.com">

Content is time in seconds

or other option

<html>
<head>
<script type="text/javascript">
<!--
function delayer(){
document.location = "../javascriptredirect.html"
}
//-->
</script>
</head>
<body onLoad="setTimeout('delayer()', 5000)">
<h2 >Prepare to be redirected!</h2>

</body>
</html>

setTimeout works in clicks where 1sec=1000 clicks so in this case delay is 5 sec

your hosting provider should allow you to do it in your domain configuration settings.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.