Splash page needed for two sites
-
I recently built two sites for a company, representing two sides of their company. What they want is for both domain names to display a single page that allows the visitor to pick company A or company B (click left side of click right side), and that click would bring them to the main page of the chosen wordpress install.
When I was testing it early on, I added an index.html page to each root folder and that worked. But once I went live, I could only get that to work for one side or the other, not both. For example, I can put it in the root folder for Site A, and I can then click on the image for Site B and go there, but if I click on the Site A side, it should take me to the index.php for Site A but it doesn’t.
Each install is in a separate folder, so there should be no cross over problems. Does anybody have any suggestions about how to pull this off?
The two sites are https://www.IokaFarms.com and https://www.IokaMarketing.com
Here’s the code for the html landing page:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>The Ioka Family</title> </head> <body> <div align="center"><a href="https://www.IokaFarms.com/index.php"><img alt="Ioka Farms" src="https://www.iokafarms.com/Landing/images/Landing-farms2.jpg" class="img-responsive" style="width:40%;" border="0"></a><a href="https://www.IokaMarketing.com/index.php"><img alt="Ioka Marketing" src="https://www.iokafarms.com/Landing/images/Landing-marketing2.jpg" class="img-responsive" style="width:40%;" border="0">></a><br> </div> <div align="center"><br> </div> <br> <br> <br> <div align="center"><br> <br> <br> </div> <br> <div align="center"><br> </div> </body> </html>
Any thoughts?
- The topic ‘Splash page needed for two sites’ is closed to new replies.