Apache Vhost HowTo Serve Same Content using a different domain and IP

There are a few ways of doing this and all basically involve using the reverse proxy or "ProxyPass" feature of Apache to accomplish it.

1.) Create a normal vhost and simply symlink the root directory of the site you want to mirror.

Eg. originalsite.com and newsite.com

/vhosts/originalsite.com/httpdocs

You would symlink like this:

ln -s /vhosts/originalsite.com/httpdocs vhosts/originalsite.com/

2.) A flexible way and the best way if you want the mirror/different site to have a different IP address but still serve the same content.


This would be in your vhost.conf

ServerName differentdomain.com
ServerAlias www.differentdomain.com
ProxyPass / http://yourmainsite.com/
ProxyPassReverse / http://yourmainsite.com/

Alternative Way If You Want To Proxy The Same Domain through a different IP (eg. for SEO geolocation purposes you could host all content on a single server and then put proxies in front of it)


ServerName maindomani.com
ServerAlias www.maindomain.com
ProxyPass / http://ip.ip.ip.ip/
ProxyPassReverse / http://ip.ip.ip.ip/
ProxyPreserveHost On


*Make sure you keep the "/" at the end of yourmainsite.com or it will not work properly.
The above is a preferable for me because it will keep working even if the backend server config or IP changes.

Caveats Issues To Take Into Account

When doing this with live, public sites that are indexed in search engines you could get penalized or just plain confuse people so there are issues to handle.

First of all if you force all requests to go to a certain domain or on SSL, you will have to consider how to handle it by updating your .htaccess

Also if you don't want to get penalized for duplicate content, you will need to add some code to your site to determine if it is being accessed by the main host name, if not then you should dynamically insert a nofollow and noindex into your <head> section.

<meta name="robots" content="noindex, nofollow" />

 


Tags:

apache, vhost, howto, content, domain, ipthere, proxy, quot, proxypass, feature, symlink, directory, eg, originalsite, newsite, vhosts, httpdocs, ln, flexible, ip, conf, servername, differentdomain, serveralias, www, http, yourmainsite, proxypassreverse, seo, geolocation, purposes, server, proxies, maindomani, maindomain, proxypreservehost, preferable, backend, config, caveats, sites, indexed, engines, penalized, confuse, requests, ssl, updating, htaccess, duplicate, determine, accessed, dynamically, insert, nofollow, noindex, meta, robots,

Latest Articles

  • How to combine .txt ACLs without breaking things
  • How to ping all of Googlebot's IPs script
  • 'virtio0' uses a qcow2 feature which is not supported by this qemu version: QCOW version 3
  • Linux bash script to get the IP of a list of hostnames
  • How To Use Camera Webcam in Docker for OBS Studio etc...
  • Computer Server Won't Post Boot Or Enter BIOS Setup After Installing RAID SAS or GPU Card etc..
  • How To Test PHP Scripts from CLI with GET variables/query string
  • apt-cache how to see all available versions of a package in Debian Ubuntu Mint
  • Virtualbox VBox Guest-utils drag and drop files stops working with Windows VMs
  • How To Remove Ubuntu Netplan and Go Back to /etc/network/interfaces
  • How To Force Flash an AMD Instinct GPU To Another Model Using Debian Ubuntu Mint Linux
  • How To compile ollama from source to use unsupported AMD GPU with rocm in Ubuntu Debian
  • QEMU KVM Virtio GPU Windows Cannot Select 1080P
  • Linux Gnome Desktop Ubuntu Mint Debian Gets Slower After Weeks
  • Firefox How to Save Full Page As Screenshot/PDF
  • Nvidia Datacenter Driver Tesla Slow nvidia-smi response and high utilization with 0 usage
  • ffmpeg how to normalize / increase the volume of your audio
  • kdenlive audio blips pops cracks artifacts solution fix
  • haproxy / nginx certbot SSL issues
  • nginx how to see the real IP when behind a CDN