Guest User

Untitled

a guest
Mar 22nd, 2018
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. Brand A (site 1) Brand B (site 2)
  2. --- ---
  3. site 1 pages site 2 pages
  4.  
  5. Brand Unified (site 3)
  6. ---
  7. site 3 pages
  8.  
  9. <VirtualHost *:80>
  10. ServerName site1.com #site1.com now points directly here
  11. ServerAlias site2.com #site2.com points directly but redirects
  12. ServerAdmin admin@brandAsite.com
  13. DocumentRoot /var/www/newsite
  14.  
  15. NameVirtualHost *:80
  16. <VirtualHost *:80>
  17. ServerName site1.com
  18. DocumentRoot /var/www/newsite
  19. </VirtualHost>
  20. <VirtualHost *:80>
  21. ServerName site2.com
  22.  
  23. # Specifically mapped redirects
  24. Redirect permanent /foo/ http://site1.com/new-foo/
  25.  
  26. # Root redirect (if no other cases above match)
  27. Redirect permanent / http://site1.com/
  28. </VirtualHost>
Add Comment
Please, Sign In to add comment