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

  • Cisco How To Use a Third Party SIP Phone (eg. Avaya, 3CX)
  • Cisco Unified Communication Manager (CUCM) - How To Add Phones
  • pptp / pptpd not working in DD-WRT iptables / router
  • systemd-journald high memory usage solution
  • How to Install FreePBX in Linux Debian Ubuntu Mint Guide
  • How To Install Cisco's CUCM (Cisco Unified Communication Manager) 12 Guide
  • Linux Ubuntu Redhat How To Extract Images from PDF
  • Linux and Windows Dual Boot Issue NIC Won't work After Booting Windows
  • Cisco CME How To Enable ACD hunt groups
  • How to install gns3 on Linux Ubuntu Mint
  • How to convert audio for Asterisk .wav format
  • Using Cisco CME Router with Asterisk as a dial-peer
  • Cisco CME How To Configure SIP Trunk VOIP
  • Virtualbox host Only Network Error Failed to save host network interface parameter - Cannot change gateway IP of host only network
  • Cisco CME and C7200 Router Testing and Learning Environment on Ubuntu 20+ Setup Tutorial Guide
  • Abusive IP ranges blacklist
  • How to Install Any OS on a Physical Drive from Windows Using VMware Workstation (Linux, Windows, BSD)
  • CDN Cloudflare how to set and preserve the real IP of the client without modifying application code on Apache
  • CentOS 7 fix Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=container error was 14: curl#6 -
  • Ubuntu Debian How To Install Recommended Packages Automatically