home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F233082_examples.html.en < prev    next >
Extensible Markup Language  |  2003-03-30  |  25KB  |  622 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>VirtualHost Examples - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">Virtual Hosts</a></div><div id="page-content"><div id="preamble"><h1>VirtualHost Examples</h1>
  20.  
  21.     <p>This document attempts to answer the commonly-asked questions about
  22.     setting up virtual hosts. These scenarios are those involving multiple
  23.     web sites running on a single server, via <a href="name-based.html">name-based</a> or <a href="ip-based.html">IP-based</a> virtual hosts. A document should be
  24.     coming soon about running sites on several servers behind a single
  25.     proxy server.</p>
  26.  
  27. </div>
  28. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#purename">Running several name-based web
  29.     sites on a single IP address.</a></li>
  30. <li><img alt="" src="../images/down.gif" /> <a href="#twoips">Name-based hosts on more than one
  31.     IP address.</a></li>
  32. <li><img alt="" src="../images/down.gif" /> <a href="#intraextra">Serving the same content on
  33.     different IP addresses (such as an internal and external
  34.     address).</a></li>
  35. <li><img alt="" src="../images/down.gif" /> <a href="#port">Running different sites on different
  36.     ports.</a></li>
  37. <li><img alt="" src="../images/down.gif" /> <a href="#ip">IP-based virtual hosting</a></li>
  38. <li><img alt="" src="../images/down.gif" /> <a href="#ipport">Mixed port-based and ip-based virtual
  39.     hosts</a></li>
  40. <li><img alt="" src="../images/down.gif" /> <a href="#mixed">Mixed name-based and IP-based
  41.     vhosts</a></li>
  42. <li><img alt="" src="../images/down.gif" /> <a href="#default">Using <code>_default_</code>
  43.     vhosts</a></li>
  44. <li><img alt="" src="../images/down.gif" /> <a href="#migrate">Migrating a name-based vhost to an
  45.     IP-based vhost</a></li>
  46. <li><img alt="" src="../images/down.gif" /> <a href="#serverpath">Using the <code>ServerPath</code>
  47.     directive</a></li>
  48. </ul></div>
  49. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  50. <div class="section">
  51. <h2><a name="purename" id="purename">Running several name-based web
  52.     sites on a single IP address.</a></h2>
  53.  
  54.     <p>Your server has a single IP address, and multiple aliases (CNAMES)
  55.     point to this machine in DNS. You want to run a web server for
  56.     <code>www.example1.com</code> and <code>www.example2.org</code> on this
  57.     machine.</p>
  58.  
  59.     <div class="note"><h3>Note</h3><p>Creating virtual
  60.           host configurations on your Apache server does not magically
  61.           cause DNS entries to be created for those host names. You
  62.           <em>must</em> have the names in DNS, resolving to your IP
  63.           address, or nobody else will be able to see your web site. You
  64.           can put entries in your <code>hosts</code> file for local
  65.           testing, but that will work only from the machine with those
  66.           hosts entries.</p>
  67.     </div>
  68.  
  69.     <div class="example"><h3>Server configuration</h3><p><code>
  70.     
  71.  
  72.     # Ensure that Apache listens on port 80<br />
  73.     Listen 80<br />
  74.     <br />
  75.     # Listen for virtual host requests on all IP addresses<br />
  76.     NameVirtualHost *<br />
  77.     <br />
  78.     <VirtualHost *><br />
  79.     <span class="indent">
  80.       DocumentRoot /www/example1<br />
  81.       ServerName www.example1.com<br />
  82.       <br />
  83.       # Other directives here<br />
  84.       <br />
  85.     </span>
  86.     </VirtualHost><br />
  87.     <br />
  88.     <VirtualHost *><br />
  89.     <span class="indent">
  90.       DocumentRoot /www/example2<br />
  91.       ServerName www.example2.org<br />
  92.       <br />
  93.       # Other directives here<br />
  94.       <br />
  95.     </span>
  96.     </VirtualHost>
  97.     </code></p></div>
  98.  
  99.     <p>The asterisks match all addresses, so the main server serves no
  100.     requests. Due to the fact that <code>www.example1.com</code> is first
  101.     in the configuration file, it has the highest priority and can be seen
  102.     as the <cite>default</cite> or <cite>primary</cite> server. That means
  103.     that if a request is received that does not match one of the specified
  104.     <code>ServerName</code> directives, it will be served by this first
  105.     <code>VirtualHost</code>.</p>
  106.  
  107.     <div class="note">
  108.             <h3>Note</h3>
  109.  
  110.             <p>You can, if you wish, replace <code>*</code> with the actual
  111.             IP address of the system. In that case, the argument to
  112.             <code>VirtualHost</code> <em>must</em> match the argument to
  113.             <code>NameVirtualHost</code>:</p>
  114.  
  115.             <div class="example"><p><code>
  116.             NameVirtualHost 172.20.30.40<br />
  117.                         <br />
  118.             <VirtualHost 172.20.30.40><br />
  119.                  # etc ...
  120.             </code></p></div>
  121.  
  122.            <p>However, it is additionally useful to use <code>*</code>
  123.            on systems where the IP address is not predictable - for
  124.            example if you have a dynamic IP address with your ISP, and
  125.            you are using some variety of dynamic DNS solution. Since
  126.            <code>*</code> matches any IP address, this configuration
  127.            would work without changes whenever your IP address
  128.            changes.</p>
  129.     </div>
  130.  
  131.     <p>The above configuration is what you will want to use in almost
  132.     all name-based virtual hosting situations. The only think that this
  133.     configuration will not work for, in fact, is when you are serving
  134.     different content based on differing IP addresses or ports.</p>
  135.  
  136.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  137. <div class="section">
  138. <h2><a name="twoips" id="twoips">Name-based hosts on more than one
  139.     IP address.</a></h2>
  140.  
  141.       <div class="note">
  142.           <h3>Note</h3><p>Any of the
  143.           techniques discussed here can be extended to any number of IP
  144.           addresses.</p>
  145.     </div>
  146.  
  147.     <p>The server has two IP addresses. On one (<code>172.20.30.40</code>), we
  148.     will serve the "main" server, <code>server.domain.com</code> and on the
  149.     other (<code>172.20.30.50</code>), we will serve two or more virtual hosts.</p>
  150.  
  151.     <div class="example"><h3>Server configuration</h3><p><code>
  152.     
  153.  
  154.     Listen 80<br />
  155.         <br />
  156.     # This is the "main" server running on 172.20.30.40<br />
  157.     ServerName server.domain.com<br />
  158.     DocumentRoot /www/mainserver<br />
  159.         <br />
  160.     # This is the other address<br />
  161.     NameVirtualHost 172.20.30.50<br />
  162.         <br />
  163.     <VirtualHost 172.20.30.50><br />
  164.     <span class="indent">
  165.         DocumentRoot /www/example1<br />
  166.         ServerName www.example1.com<br />
  167.                <br />
  168.         # Other directives here ...<br />
  169.                 <br />
  170.     </span>
  171.     </VirtualHost><br />
  172.         <br />
  173.     <VirtualHost 172.20.30.50><br />
  174.     <span class="indent">
  175.         DocumentRoot /www/example2<br />
  176.         ServerName www.example2.org<br />
  177.                 <br />
  178.         # Other directives here ...<br />
  179.                 <br />
  180.     </span>
  181.     </VirtualHost>
  182.     </code></p></div>
  183.  
  184.     <p>Any request to an address other than <code>172.20.30.50</code> will be
  185.     served from the main server. A request to <code>172.20.30.50</code> with an
  186.     unknown hostname, or no <code>Host:</code> header, will be served from
  187.     <code>www.example1.com</code>.</p>
  188.  
  189.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  190. <div class="section">
  191. <h2><a name="intraextra" id="intraextra">Serving the same content on
  192.     different IP addresses (such as an internal and external
  193.     address).</a></h2>
  194.  
  195.     <p>The server machine has two IP addresses (<code>192.168.1.1</code>
  196.     and <code>172.20.30.40</code>). The machine is sitting between an
  197.     internal (intranet) network and an external (internet) network. Outside
  198.     of the network, the name <code>server.example.com</code> resolves to
  199.     the external address (<code>172.20.30.40</code>), but inside the
  200.     network, that same name resolves to the internal address
  201.     (<code>192.168.1.1</code>).</p>
  202.  
  203.     <p>The server can be made to respond to internal and external requests
  204.     with the same content, with just one <code>VirtualHost</code>
  205.     section.</p>
  206.  
  207.     <div class="example"><h3>Server configuration</h3><p><code>
  208.     
  209.  
  210.     NameVirtualHost 192.168.1.1<br />
  211.     NameVirtualHost 172.20.30.40<br />
  212.         <br />
  213.     <VirtualHost 192.168.1.1 172.20.30.40><br />
  214.     <span class="indent">
  215.         DocumentRoot /www/server1<br />
  216.         ServerName server.example.com<br />
  217.         ServerAlias server<br />
  218.     </span>
  219.     </VirtualHost>
  220.     </code></p></div>
  221.  
  222.     <p>Now requests from both networks will be served from the same
  223.     <code>VirtualHost</code>.</p>
  224.  
  225.     <div class="note">
  226.           <h3>Note:</h3><p>On the internal
  227.           network, one can just use the name <code>server</code> rather
  228.           than the fully qualified host name
  229.           <code>server.example.com</code>.</p>
  230.  
  231.           <p>Note also that, in the above example, you can replace the list
  232.           of IP addresses with <code>*</code>, which will cause the server to
  233.           respond the same on all addresses.</p>
  234.     </div>
  235.  
  236.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  237. <div class="section">
  238. <h2><a name="port" id="port">Running different sites on different
  239.     ports.</a></h2>
  240.  
  241.     <p>You have multiple domains going to the same IP and also want to
  242.     serve multiple ports. By defining the ports in the "NameVirtualHost"
  243.     tag, you can allow this to work. If you try using <VirtualHost
  244.     name:port> without the NameVirtualHost name:port or you try to use
  245.     the Listen directive, your configuration will not work.</p>
  246.  
  247.     <div class="example"><h3>Server configuration</h3><p><code>
  248.     
  249.  
  250.     Listen 80<br />
  251.     Listen 8080<br />
  252.         <br />
  253.     NameVirtualHost 172.20.30.40:80<br />
  254.     NameVirtualHost 172.20.30.40:8080<br />
  255.         <br />
  256.     <VirtualHost 172.20.30.40:80><br />
  257.     <span class="indent">
  258.         ServerName www.example1.com<br />
  259.         DocumentRoot /www/domain-80<br />
  260.     </span>
  261.     </VirtualHost><br />
  262.         <br />
  263.     <VirtualHost 172.20.30.40:8080><br />
  264.     <span class="indent">
  265.         ServerName www.example1.com<br />
  266.         DocumentRoot /www/domain-8080<br />
  267.     </span>
  268.     </VirtualHost><br />
  269.         <br />
  270.     <VirtualHost 172.20.30.40:80><br />
  271.     <span class="indent">
  272.         ServerName www.example2.org<br />
  273.         DocumentRoot /www/otherdomain-80<br />
  274.     </span>
  275.     </VirtualHost><br />
  276.         <br />
  277.     <VirtualHost 172.20.30.40:8080><br />
  278.     <span class="indent">
  279.         ServerName www.example2.org<br />
  280.         DocumentRoot /www/otherdomain-8080<br />
  281.     </span>
  282.     </VirtualHost>
  283.     </code></p></div>
  284.  
  285.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  286. <div class="section">
  287. <h2><a name="ip" id="ip">IP-based virtual hosting</a></h2>
  288.  
  289.     <p>The server has two IP addresses (<code>172.20.30.40</code> and
  290.     <code>172.20.30.50</code>) which resolve to the names
  291.     <code>www.example1.com</code> and <code>www.example2.org</code>
  292.     respectively.</p>
  293.  
  294.     <div class="example"><h3>Server configuration</h3><p><code>
  295.     
  296.  
  297.     Listen 80<br />
  298.         <br />
  299.     <VirtualHost 172.20.30.40><br />
  300.     <span class="indent">
  301.         DocumentRoot /www/example1<br />
  302.         ServerName www.example1.com<br />
  303.     </span>
  304.     </VirtualHost><br />
  305.         <br />
  306.     <VirtualHost 172.20.30.50><br />
  307.     <span class="indent">
  308.         DocumentRoot /www/example2<br />
  309.         ServerName www.example2.org<br />
  310.     </span>
  311.     </VirtualHost>
  312.     </code></p></div>
  313.  
  314.     <p>Requests for any address not specified in one of the
  315.     <code><VirtualHost></code> directives (such as
  316.     <code>localhost</code>, for example) will go to the main server, if
  317.     there is one.</p>
  318.  
  319.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  320. <div class="section">
  321. <h2><a name="ipport" id="ipport">Mixed port-based and ip-based virtual
  322.     hosts</a></h2>
  323.  
  324.     <p>The server machine has two IP addresses (<code>172.20.30.40</code> and
  325.     <code>172.20.30.50</code>) which resolve to the names
  326.     <code>www.example1.com</code> and <code>www.example2.org</code>
  327.     respectively. In each case, we want to run hosts on ports 80 and
  328.     8080.</p>
  329.  
  330.     <div class="example"><h3>Server configuration</h3><p><code>
  331.     
  332.  
  333.     Listen 172.20.30.40:80<br />
  334.     Listen 172.20.30.40:8080<br />
  335.     Listen 172.20.30.50:80<br />
  336.     Listen 172.20.30.50:8080<br />
  337.         <br />
  338.     <VirtualHost 172.20.30.40:80><br />
  339.     <span class="indent">
  340.         DocumentRoot /www/example1-80<br />
  341.         ServerName www.example1.com<br />
  342.     </span>
  343.     </VirtualHost><br />
  344.         <br />
  345.     <VirtualHost 172.20.30.40:8080><br />
  346.     <span class="indent">
  347.         DocumentRoot /www/example1-8080<br />
  348.         ServerName www.example1.com<br />
  349.         </span>
  350.     </VirtualHost><br />
  351.         <br />
  352.     <VirtualHost 172.20.30.50:80><br />
  353.     <span class="indent">
  354.         DocumentRoot /www/example2-80<br />
  355.         ServerName www.example1.org<br />
  356.     </span>
  357.     </VirtualHost><br />
  358.         <br />
  359.     <VirtualHost 172.20.30.50:8080><br />
  360.     <span class="indent">
  361.         DocumentRoot /www/example2-8080<br />
  362.         ServerName www.example2.org<br />
  363.     </span>
  364.     </VirtualHost>
  365.     </code></p></div>
  366.  
  367.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  368. <div class="section">
  369. <h2><a name="mixed" id="mixed">Mixed name-based and IP-based
  370.     vhosts</a></h2>
  371.  
  372.     <p>On some of my addresses, I want to do name-based virtual hosts, and
  373.     on others, IP-based hosts.</p>
  374.  
  375.     <div class="example"><h3>Server configuration</h3><p><code>
  376.     
  377.  
  378.     Listen 80<br />
  379.         <br />
  380.     NameVirtualHost 172.20.30.40<br />
  381.         <br />
  382.     <VirtualHost 172.20.30.40><br />
  383.     <span class="indent">
  384.         DocumentRoot /www/example1<br />
  385.         ServerName www.example1.com<br />
  386.     </span>
  387.     </VirtualHost><br />
  388.         <br />
  389.     <VirtualHost 172.20.30.40><br />
  390.     <span class="indent">
  391.         DocumentRoot /www/example2<br />
  392.         ServerName www.example2.org<br />
  393.     </span>
  394.     </VirtualHost><br />
  395.         <br />
  396.     <VirtualHost 172.20.30.40><br />
  397.     <span class="indent">
  398.         DocumentRoot /www/example3<br />
  399.         ServerName www.example3.net<br />
  400.     </span>
  401.     </VirtualHost><br />
  402.         <br />
  403.     # IP-based<br />
  404.     <VirtualHost 172.20.30.50><br />
  405.     <span class="indent">
  406.         DocumentRoot /www/example4<br />
  407.         ServerName www.example4.edu<br />
  408.     </span>
  409.     </VirtualHost><br />
  410.         <br />
  411.     <VirtualHost 172.20.30.60><br />
  412.     <span class="indent">
  413.         DocumentRoot /www/example5<br />
  414.         ServerName www.example5.gov<br />
  415.     </span>
  416.     </VirtualHost>
  417.     </code></p></div>
  418.  
  419.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  420. <div class="section">
  421. <h2><a name="default" id="default">Using <code>_default_</code>
  422.     vhosts</a></h2>
  423.  
  424.       <h3><a name="defaultallports" id="defaultallports"><code>_default_</code> vhosts
  425.     for all ports</a></h3>
  426.  
  427.     <p>Catching <em>every</em> request to any unspecified IP address and
  428.     port, <em>i.e.</em>, an address/port combination that is not used for
  429.     any other virtual host.</p>
  430.  
  431.     <div class="example"><h3>Server configuration</h3><p><code>
  432.     
  433.  
  434.     <VirtualHost _default_:*><br />
  435.     <span class="indent">
  436.         DocumentRoot /www/default<br />
  437.     </span>
  438.     </VirtualHost>
  439.     </code></p></div>
  440.  
  441.     <p>Using such a default vhost with a wildcard port effectively prevents
  442.     any request going to the main server.</p>
  443.  
  444.     <p>A default vhost never serves a request that was sent to an
  445.     address/port that is used for name-based vhosts. If the request
  446.     contained an unknown or no <code>Host:</code> header it is always
  447.     served from the primary name-based vhost (the vhost for that
  448.     address/port appearing first in the configuration file).</p>
  449.  
  450.     <p>You can use <code class="directive"><a href="../mod/mod_alias.html#aliasmatch">AliasMatch</a></code> or
  451.     <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> to rewrite any
  452.     request to a single information page (or script).</p>
  453.     
  454.  
  455.     <h3><a name="defaultdifferentports" id="defaultdifferentports"><code>_default_</code> vhosts
  456.     for different ports</a></h3>
  457.  
  458.     <p>Same as setup 1, but the server listens on several ports and we want
  459.     to use a second <code>_default_</code> vhost for port 80.</p>
  460.  
  461.     <div class="example"><h3>Server configuration</h3><p><code>
  462.     
  463.  
  464.     <VirtualHost _default_:80><br />
  465.     <span class="indent">
  466.         DocumentRoot /www/default80<br />
  467.         # ...<br />
  468.     </span>
  469.     </VirtualHost><br />
  470.         <br />
  471.     <VirtualHost _default_:*><br />
  472.     <span class="indent">
  473.         DocumentRoot /www/default<br />
  474.         # ...<br />
  475.     </span>
  476.     </VirtualHost>
  477.     </code></p></div>
  478.  
  479.     <p>The default vhost for port 80 (which <em>must</em> appear before any
  480.     default vhost with a wildcard port) catches all requests that were sent
  481.     to an unspecified IP address. The main server is never used to serve a
  482.     request.</p>
  483.     
  484.  
  485.     <h3><a name="defaultoneport" id="defaultoneport"><code>_default_</code> vhosts
  486.     for one port</a></h3>
  487.  
  488.     <p>We want to have a default vhost for port 80, but no other default
  489.     vhosts.</p>
  490.  
  491.     <div class="example"><h3>Server configuration</h3><p><code>
  492.     
  493.  
  494.     <VirtualHost _default_:80><br />
  495.     DocumentRoot /www/default<br />
  496.     ...<br />
  497.     </VirtualHost>
  498.     </code></p></div>
  499.  
  500.     <p>A request to an unspecified address on port 80 is served from the
  501.     default vhost any other request to an unspecified address and port is
  502.     served from the main server.</p>
  503.     
  504.  
  505.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  506. <div class="section">
  507. <h2><a name="migrate" id="migrate">Migrating a name-based vhost to an
  508.     IP-based vhost</a></h2>
  509.  
  510.     <p>The name-based vhost with the hostname
  511.     <code>www.example2.org</code> (from our <a href="#name">name-based</a> example, setup 2) should get its own IP
  512.     address. To avoid problems with name servers or proxies who cached the
  513.     old IP address for the name-based vhost we want to provide both
  514.     variants during a migration phase.<br />
  515.      The solution is easy, because we can simply add the new IP address
  516.     (<code>172.20.30.50</code>) to the <code>VirtualHost</code>
  517.     directive.</p>
  518.  
  519.     <div class="example"><h3>Server configuration</h3><p><code>
  520.     
  521.  
  522.     Listen 80<br />
  523.     ServerName www.example1.com<br />
  524.     DocumentRoot /www/example1<br />
  525.         <br />
  526.     NameVirtualHost 172.20.30.40<br />
  527.         <br />
  528.     <VirtualHost 172.20.30.40 172.20.30.50><br />
  529.     <span class="indent">
  530.         DocumentRoot /www/example2<br />
  531.         ServerName www.example2.org<br />
  532.         # ...<br />
  533.     </span>
  534.     </VirtualHost><br />
  535.         <br />
  536.     <VirtualHost 172.20.30.40><br />
  537.     <span class="indent">
  538.         DocumentRoot /www/example3<br />
  539.         ServerName www.example3.net<br />
  540.         ServerAlias *.example3.net<br />
  541.         # ...<br />
  542.     </span>
  543.     </VirtualHost>
  544.     </code></p></div>
  545.  
  546.     <p>The vhost can now be accessed through the new address (as an
  547.     IP-based vhost) and through the old address (as a name-based
  548.     vhost).</p>
  549.  
  550.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  551. <div class="section">
  552. <h2><a name="serverpath" id="serverpath">Using the <code>ServerPath</code>
  553.     directive</a></h2>
  554.  
  555.     <p>We have a server with two name-based vhosts. In order to match the
  556.     correct virtual host a client must send the correct <code>Host:</code>
  557.     header. Old HTTP/1.0 clients do not send such a header and Apache has
  558.     no clue what vhost the client tried to reach (and serves the request
  559.     from the primary vhost). To provide as much backward compatibility as
  560.     possible we create a primary vhost which returns a single page
  561.     containing links with an URL prefix to the name-based virtual
  562.     hosts.</p>
  563.  
  564.     <div class="example"><h3>Server configuration</h3><p><code>
  565.     
  566.  
  567.     NameVirtualHost 172.20.30.40<br />
  568.         <br />
  569.     <VirtualHost 172.20.30.40><br />
  570.     <span class="indent">
  571.         # primary vhost<br />
  572.         DocumentRoot /www/subdomain<br />
  573.         RewriteEngine On<br />
  574.         RewriteRule ^/.* /www/subdomain/index.html<br />
  575.         # ...<br />
  576.     </span>
  577.     </VirtualHost><br />
  578.         <br />
  579.     <VirtualHost 172.20.30.40><br />
  580.     DocumentRoot /www/subdomain/sub1<br />
  581.     <span class="indent">
  582.         ServerName www.sub1.domain.tld<br />
  583.         ServerPath /sub1/<br />
  584.         RewriteEngine On<br />
  585.         RewriteRule ^(/sub1/.*) /www/subdomain$1<br />
  586.         # ...<br />
  587.     </span>
  588.     </VirtualHost><br />
  589.         <br />
  590.     <VirtualHost 172.20.30.40><br />
  591.     <span class="indent">
  592.         DocumentRoot /www/subdomain/sub2<br />
  593.         ServerName www.sub2.domain.tld<br />
  594.         ServerPath /sub2/<br />
  595.         RewriteEngine On<br />
  596.         RewriteRule ^(/sub2/.*) /www/subdomain$1<br />
  597.         # ...<br />
  598.     </span>
  599.     </VirtualHost>
  600.     </code></p></div>
  601.  
  602.     <p>Due to the <code class="directive"><a href="../mod/core.html#serverpath">ServerPath</a></code>
  603.     directive a request to the URL
  604.     <code>http://www.sub1.domain.tld/sub1/</code> is <em>always</em> served
  605.     from the sub1-vhost.<br /> A request to the URL
  606.     <code>http://www.sub1.domain.tld/</code> is only
  607.     served from the sub1-vhost if the client sent a correct
  608.     <code>Host:</code> header. If no <code>Host:</code> header is sent the
  609.     client gets the information page from the primary host.<br />
  610.      Please note that there is one oddity: A request to
  611.     <code>http://www.sub2.domain.tld/sub1/</code> is also served from the
  612.     sub1-vhost if the client sent no <code>Host:</code> header.<br />
  613.      The <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> directives
  614.     are used to make sure that a client which sent a correct
  615.     <code>Host:</code> header can use both URL variants, <em>i.e.</em>,
  616.     with or without URL prefix.</p>
  617.  
  618.     </div></div>
  619. <div id="footer">
  620. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  621. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  622. </body></html>