Hi,

If you want the customer to land on a landing page that redirects
after 5/10 seconds you should just setup two virtualhosts in apache
one for the new domain and one for the old...

The old domain has one index.html file inside the doc root which has a
META refresh inside. example:

<html>
  <head>
    <title>New Site Name</title>
    <META http-equiv="refresh" content="5;URL=http://
www.newsite.com">
  </head>
  <body bgcolor="#ffffff">
    <center>
    The contents you are looking for have moved. You will be
redirected to the new location automatically in 5 seconds. Please
    bookmark the correct page at <a href="http://
www.newsite.com">www.newsite.com</a>
    </center>
  </body>
</html>

That will give a landing page for the old site that redirects to the
new site after 5 seconds...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to