How to have two different domains with same content except the contact info

Do you guys have an idea how to do this?

I have a website (mywebsite.nl) and another domain (mywebsite.be). I want mywebsite.be to have the same look and content as mywebsite.nl except the contact info is different.

Read More

Thanks!

Related posts

Leave a Reply

3 comments

  1. in PHP and thus in wordpress you can get the name of the server and change your contactinfo depending on it:

    <?php if ($_SERVER['SERVER_NAME']=='www.mywebsite.be') echo "belgium address";
    else echo "dutch address";
    ?>
    
  2. You should only make one site, and just add 2 contact forms/contact information for each counties.
    And put a redirect on one domain.

    And like @pekka said, google will punish the content duplication.
    Besides that in the source code domain names will get messed up and make your visitors cross domains unintended.