home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277928_rewriteguide.xml < prev    next >
Extensible Markup Language  |  2004-08-11  |  70KB  |  2,110 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.4.2.12 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="rewriteguide.xml.meta">
  23.   <parentdocument href="./">Miscellaneous Documentation</parentdocument>
  24.  
  25.   <title>URL Rewriting Guide</title>
  26.  
  27.   <summary>
  28.     <note>
  29.       <p>Originally written by<br />
  30.       <cite>Ralf S. Engelschall <rse@apache.org></cite><br />
  31.       December 1997</p>
  32.     </note>
  33.  
  34.     <p>This document supplements the <module>mod_rewrite</module>
  35.     <a href="../mod/mod_rewrite.html">reference documentation</a>.
  36.     It describes how one can use Apache's <module>mod_rewrite</module>
  37.     to solve typical URL-based problems with which webmasters are
  38.     commonony confronted. We give detailed descriptions on how to
  39.     solve each problem by configuring URL rewriting rulesets.</p>
  40.  
  41.   </summary>
  42.  
  43.   <section id="ToC1">
  44.  
  45.     <title>Introduction to <code>mod_rewrite</code></title>
  46.  
  47.     <p>The Apache module <module>mod_rewrite</module> is a killer
  48.     one, i.e. it is a really sophisticated module which provides
  49.     a powerful way to do URL manipulations. With it you can do nearly 
  50.     all types of URL manipulations you ever dreamed about.
  51.     The price you have to pay is to accept complexity, because
  52.     <module>mod_rewrite</module>'s major drawback is that it is
  53.     not easy to understand and use for the beginner. And even
  54.     Apache experts sometimes discover new aspects where
  55.     <module>mod_rewrite</module> can help.</p>
  56.  
  57.     <p>In other words: With <module>mod_rewrite</module> you either
  58.     shoot yourself in the foot the first time and never use it again
  59.     or love it for the rest of your life because of its power.
  60.     This paper tries to give you a few initial success events to
  61.     avoid the first case by presenting already invented solutions
  62.     to you.</p>
  63.  
  64.   </section>
  65.  
  66.   <section id="ToC2">
  67.  
  68.     <title>Practical Solutions</title>
  69.  
  70.     <p>Here come a lot of practical solutions I've either invented
  71.     myself or collected from other people's solutions in the past.
  72.     Feel free to learn the black magic of URL rewriting from
  73.     these examples.</p>
  74.  
  75.     <note type="warning">ATTENTION: Depending on your server-configuration
  76.     it can be necessary to slightly change the examples for your
  77.     situation, e.g. adding the <code>[PT]</code> flag when
  78.     additionally using <module>mod_alias</module> and
  79.     <module>mod_userdir</module>, etc. Or rewriting a ruleset
  80.     to fit in <code>.htaccess</code> context instead
  81.     of per-server context. Always try to understand what a
  82.     particular ruleset really does before you use it. It
  83.     avoid problems.</note>
  84.  
  85.   </section>
  86.  
  87.   <section id="url">
  88.  
  89.     <title>URL Layout</title>
  90.  
  91.     <section>
  92.  
  93.       <title>Canonical URLs</title>
  94.  
  95.       <dl>
  96.         <dt>Description:</dt>
  97.  
  98.         <dd>
  99.           <p>On some webservers there are more than one URL for a
  100.           resource. Usually there are canonical URLs (which should be
  101.           actually used and distributed) and those which are just
  102.           shortcuts, internal ones, etc. Independent of which URL the
  103.           user supplied with the request he should finally see the
  104.           canonical one only.</p>
  105.         </dd>
  106.  
  107.         <dt>Solution:</dt>
  108.  
  109.         <dd>
  110.           <p>We do an external HTTP redirect for all non-canonical
  111.           URLs to fix them in the location view of the Browser and
  112.           for all subsequent requests. In the example ruleset below
  113.           we replace <code>/~user</code> by the canonical
  114.           <code>/u/user</code> and fix a missing trailing slash for
  115.           <code>/u/user</code>.</p>
  116.  
  117. <example><pre>
  118. RewriteRule   ^/<strong>~</strong>([^/]+)/?(.*)    /<strong>u</strong>/$1/$2  [<strong>R</strong>]
  119. RewriteRule   ^/([uge])/(<strong>[^/]+</strong>)$  /$1/$2<strong>/</strong>   [<strong>R</strong>]
  120. </pre></example>
  121.         </dd>
  122.       </dl>
  123.  
  124.     </section>
  125.  
  126.     <section>
  127.  
  128.       <title>Canonical Hostnames</title>
  129.  
  130.       <dl>
  131.         <dt>Description:</dt>
  132.  
  133.         <dd>The goal of this rule is to force the use of a particular
  134.         hostname, in preference to other hostnames which may be used to
  135.         reach the same site. For example, if you wish to force the use
  136.         of <strong>www.example.com</strong> instead of
  137.         <strong>example.com</strong>, you might use a variant of the
  138.         following recipe.</dd>
  139.  
  140.         <dt>Solution:</dt>
  141.  
  142.         <dd>
  143. <example><pre>
  144. # For sites running on a port other than 80
  145. RewriteCond %{HTTP_HOST}   !^fully\.qualified\.domain\.name [NC]
  146. RewriteCond %{HTTP_HOST}   !^$
  147. RewriteCond %{SERVER_PORT} !^80$
  148. RewriteRule ^/(.*)         http://fully.qualified.domain.name:%{SERVER_PORT}/$1 [L,R]
  149.  
  150. # And for a site running on port 80
  151. RewriteCond %{HTTP_HOST}   !^fully\.qualified\.domain\.name [NC]
  152. RewriteCond %{HTTP_HOST}   !^$
  153. RewriteRule ^/(.*)         http://fully.qualified.domain.name/$1 [L,R]
  154. </pre></example>
  155.         </dd>
  156.       </dl>
  157.  
  158.     </section>
  159.  
  160.     <section>
  161.  
  162.       <title>Moved <code>DocumentRoot</code></title>
  163.  
  164.       <dl>
  165.         <dt>Description:</dt>
  166.  
  167.         <dd>
  168.           <p>Usually the <directive module="core">DocumentRoot</directive>
  169.           of the webserver directly relates to the URL "<code>/</code>".
  170.           But often this data is not really of top-level priority, it is
  171.           perhaps just one entity of a lot of data pools. For instance at
  172.           our Intranet sites there are <code>/e/www/</code>
  173.           (the homepage for WWW), <code>/e/sww/</code> (the homepage for
  174.           the Intranet) etc. Now because the data of the <directive module="core"
  175.           >DocumentRoot</directive> stays at <code>/e/www/</code> we had
  176.           to make sure that all inlined images and other stuff inside this
  177.           data pool work for subsequent requests.</p>
  178.         </dd>
  179.  
  180.         <dt>Solution:</dt>
  181.  
  182.         <dd>
  183.           <p>We just redirect the URL <code>/</code> to
  184.           <code>/e/www/</code>. While is seems trivial it is
  185.           actually trivial with <module>mod_rewrite</module>, only.
  186.           Because the typical old mechanisms of URL <em>Aliases</em>
  187.           (as provides by <module>mod_alias</module> and friends)
  188.           only used <em>prefix</em> matching. With this you cannot
  189.           do such a redirection because the <directive module="core"
  190.           >DocumentRoot</directive> is a prefix of all URLs. With
  191.           <module>mod_rewrite</module> it is really trivial:</p>
  192.  
  193. <example><pre>
  194. RewriteEngine on
  195. RewriteRule   <strong>^/$</strong>  /e/www/  [<strong>R</strong>]
  196. </pre></example>
  197.         </dd>
  198.       </dl>
  199.  
  200.     </section>
  201.  
  202.     <section>
  203.  
  204.       <title>Trailing Slash Problem</title>
  205.  
  206.       <dl>
  207.         <dt>Description:</dt>
  208.  
  209.         <dd>
  210.           <p>Every webmaster can sing a song about the problem of
  211.           the trailing slash on URLs referencing directories. If they
  212.           are missing, the server dumps an error, because if you say
  213.           <code>/~quux/foo</code> instead of <code>/~quux/foo/</code>
  214.           then the server searches for a <em>file</em> named
  215.           <code>foo</code>. And because this file is a directory it
  216.           complains. Actually it tries to fix it itself in most of
  217.           the cases, but sometimes this mechanism need to be emulated
  218.           by you. For instance after you have done a lot of
  219.           complicated URL rewritings to CGI scripts etc.</p>
  220.         </dd>
  221.  
  222.         <dt>Solution:</dt>
  223.  
  224.         <dd>
  225.           <p>The solution to this subtle problem is to let the server
  226.           add the trailing slash automatically. To do this
  227.           correctly we have to use an external redirect, so the
  228.           browser correctly requests subsequent images etc. If we
  229.           only did a internal rewrite, this would only work for the
  230.           directory page, but would go wrong when any images are
  231.           included into this page with relative URLs, because the
  232.           browser would request an in-lined object. For instance, a
  233.           request for <code>image.gif</code> in
  234.           <code>/~quux/foo/index.html</code> would become
  235.           <code>/~quux/image.gif</code> without the external
  236.           redirect!</p>
  237.  
  238.           <p>So, to do this trick we write:</p>
  239.  
  240. <example><pre>
  241. RewriteEngine  on
  242. RewriteBase    /~quux/
  243. RewriteRule    ^foo<strong>$</strong>  foo<strong>/</strong>  [<strong>R</strong>]
  244. </pre></example>
  245.  
  246.           <p>The crazy and lazy can even do the following in the
  247.           top-level <code>.htaccess</code> file of their homedir.
  248.           But notice that this creates some processing
  249.           overhead.</p>
  250.  
  251. <example><pre>
  252. RewriteEngine  on
  253. RewriteBase    /~quux/
  254. RewriteCond    %{REQUEST_FILENAME}  <strong>-d</strong>
  255. RewriteRule    ^(.+<strong>[^/]</strong>)$           $1<strong>/</strong>  [R]
  256. </pre></example>
  257.         </dd>
  258.       </dl>
  259.  
  260.     </section>
  261.  
  262.     <section>
  263.  
  264.       <title>Webcluster through Homogeneous URL Layout</title>
  265.  
  266.       <dl>
  267.         <dt>Description:</dt>
  268.  
  269.         <dd>
  270.           <p>We want to create a homogeneous and consistent URL
  271.           layout over all WWW servers on a Intranet webcluster, i.e.
  272.           all URLs (per definition server local and thus server
  273.           dependent!) become actually server <em>independent</em>!
  274.           What we want is to give the WWW namespace a consistent
  275.           server-independent layout: no URL should have to include
  276.           any physically correct target server. The cluster itself
  277.           should drive us automatically to the physical target
  278.           host.</p>
  279.         </dd>
  280.  
  281.         <dt>Solution:</dt>
  282.  
  283.         <dd>
  284.           <p>First, the knowledge of the target servers come from
  285.           (distributed) external maps which contain information
  286.           where our users, groups and entities stay. The have the
  287.           form</p>
  288.  
  289. <example><pre>
  290. user1  server_of_user1
  291. user2  server_of_user2
  292. :      :
  293. </pre></example>
  294.  
  295.           <p>We put them into files <code>map.xxx-to-host</code>.
  296.           Second we need to instruct all servers to redirect URLs
  297.           of the forms</p>
  298.  
  299. <example><pre>
  300. /u/user/anypath
  301. /g/group/anypath
  302. /e/entity/anypath
  303. </pre></example>
  304.  
  305.           <p>to</p>
  306.  
  307. <example><pre>
  308. http://physical-host/u/user/anypath
  309. http://physical-host/g/group/anypath
  310. http://physical-host/e/entity/anypath
  311. </pre></example>
  312.  
  313.           <p>when the URL is not locally valid to a server. The
  314.           following ruleset does this for us by the help of the map
  315.           files (assuming that server0 is a default server which
  316.           will be used if a user has no entry in the map):</p>
  317.  
  318. <example><pre>
  319. RewriteEngine on
  320.  
  321. RewriteMap      user-to-host   txt:/path/to/map.user-to-host
  322. RewriteMap     group-to-host   txt:/path/to/map.group-to-host
  323. RewriteMap    entity-to-host   txt:/path/to/map.entity-to-host
  324.  
  325. RewriteRule   ^/u/<strong>([^/]+)</strong>/?(.*)   http://<strong>${user-to-host:$1|server0}</strong>/u/$1/$2
  326. RewriteRule   ^/g/<strong>([^/]+)</strong>/?(.*)  http://<strong>${group-to-host:$1|server0}</strong>/g/$1/$2
  327. RewriteRule   ^/e/<strong>([^/]+)</strong>/?(.*) http://<strong>${entity-to-host:$1|server0}</strong>/e/$1/$2
  328.  
  329. RewriteRule   ^/([uge])/([^/]+)/?$          /$1/$2/.www/
  330. RewriteRule   ^/([uge])/([^/]+)/([^.]+.+)   /$1/$2/.www/$3\
  331. </pre></example>
  332.         </dd>
  333.       </dl>
  334.  
  335.     </section>
  336.  
  337.     <section>
  338.  
  339.       <title>Move Homedirs to Different Webserver</title>
  340.  
  341.       <dl>
  342.         <dt>Description:</dt>
  343.  
  344.         <dd>
  345.           <p>Many webmasters have asked for a solution to the
  346.           following situation: They wanted to redirect just all
  347.           homedirs on a webserver to another webserver. They usually
  348.           need such things when establishing a newer webserver which
  349.           will replace the old one over time.</p>
  350.         </dd>
  351.  
  352.         <dt>Solution:</dt>
  353.  
  354.         <dd>
  355.           <p>The solution is trivial with <module>mod_rewrite</module>.
  356.           On the old webserver we just redirect all
  357.           <code>/~user/anypath</code> URLs to
  358.           <code>http://newserver/~user/anypath</code>.</p>
  359.  
  360. <example><pre>
  361. RewriteEngine on
  362. RewriteRule   ^/~(.+)  http://<strong>newserver</strong>/~$1  [R,L]
  363. </pre></example>
  364.         </dd>
  365.       </dl>
  366.  
  367.     </section>
  368.  
  369.     <section>
  370.  
  371.       <title>Structured Homedirs</title>
  372.  
  373.       <dl>
  374.         <dt>Description:</dt>
  375.  
  376.         <dd>
  377.           <p>Some sites with thousands of users usually use a
  378.           structured homedir layout, i.e. each homedir is in a
  379.           subdirectory which begins for instance with the first
  380.           character of the username. So, <code>/~foo/anypath</code>
  381.           is <code>/home/<strong>f</strong>/foo/.www/anypath</code>
  382.           while <code>/~bar/anypath</code> is
  383.           <code>/home/<strong>b</strong>/bar/.www/anypath</code>.</p>
  384.         </dd>
  385.  
  386.         <dt>Solution:</dt>
  387.  
  388.         <dd>
  389.           <p>We use the following ruleset to expand the tilde URLs
  390.           into exactly the above layout.</p>
  391.  
  392. <example><pre>
  393. RewriteEngine on
  394. RewriteRule   ^/~(<strong>([a-z])</strong>[a-z0-9]+)(.*)  /home/<strong>$2</strong>/$1/.www$3
  395. </pre></example>
  396.         </dd>
  397.       </dl>
  398.  
  399.     </section>
  400.  
  401.     <section>
  402.  
  403.       <title>Filesystem Reorganization</title>
  404.  
  405.       <dl>
  406.         <dt>Description:</dt>
  407.  
  408.         <dd>
  409.           <p>This really is a hardcore example: a killer application
  410.           which heavily uses per-directory
  411.           <code>RewriteRules</code> to get a smooth look and feel
  412.           on the Web while its data structure is never touched or
  413.           adjusted. Background: <strong><em>net.sw</em></strong> is
  414.           my archive of freely available Unix software packages,
  415.           which I started to collect in 1992. It is both my hobby
  416.           and job to to this, because while I'm studying computer
  417.           science I have also worked for many years as a system and
  418.           network administrator in my spare time. Every week I need
  419.           some sort of software so I created a deep hierarchy of
  420.           directories where I stored the packages:</p>
  421.  
  422. <example><pre>
  423. drwxrwxr-x   2 netsw  users    512 Aug  3 18:39 Audio/
  424. drwxrwxr-x   2 netsw  users    512 Jul  9 14:37 Benchmark/
  425. drwxrwxr-x  12 netsw  users    512 Jul  9 00:34 Crypto/
  426. drwxrwxr-x   5 netsw  users    512 Jul  9 00:41 Database/
  427. drwxrwxr-x   4 netsw  users    512 Jul 30 19:25 Dicts/
  428. drwxrwxr-x  10 netsw  users    512 Jul  9 01:54 Graphic/
  429. drwxrwxr-x   5 netsw  users    512 Jul  9 01:58 Hackers/
  430. drwxrwxr-x   8 netsw  users    512 Jul  9 03:19 InfoSys/
  431. drwxrwxr-x   3 netsw  users    512 Jul  9 03:21 Math/
  432. drwxrwxr-x   3 netsw  users    512 Jul  9 03:24 Misc/
  433. drwxrwxr-x   9 netsw  users    512 Aug  1 16:33 Network/
  434. drwxrwxr-x   2 netsw  users    512 Jul  9 05:53 Office/
  435. drwxrwxr-x   7 netsw  users    512 Jul  9 09:24 SoftEng/
  436. drwxrwxr-x   7 netsw  users    512 Jul  9 12:17 System/
  437. drwxrwxr-x  12 netsw  users    512 Aug  3 20:15 Typesetting/
  438. drwxrwxr-x  10 netsw  users    512 Jul  9 14:08 X11/
  439. </pre></example>
  440.  
  441.           <p>In July 1996 I decided to make this archive public to
  442.           the world via a nice Web interface. "Nice" means that I
  443.           wanted to offer an interface where you can browse
  444.           directly through the archive hierarchy. And "nice" means
  445.           that I didn't wanted to change anything inside this
  446.           hierarchy - not even by putting some CGI scripts at the
  447.           top of it. Why? Because the above structure should be
  448.           later accessible via FTP as well, and I didn't want any
  449.           Web or CGI stuff to be there.</p>
  450.         </dd>
  451.  
  452.         <dt>Solution:</dt>
  453.  
  454.         <dd>
  455.           <p>The solution has two parts: The first is a set of CGI
  456.           scripts which create all the pages at all directory
  457.           levels on-the-fly. I put them under
  458.           <code>/e/netsw/.www/</code> as follows:</p>
  459.  
  460. <example><pre>
  461. -rw-r--r--   1 netsw  users    1318 Aug  1 18:10 .wwwacl
  462. drwxr-xr-x  18 netsw  users     512 Aug  5 15:51 DATA/
  463. -rw-rw-rw-   1 netsw  users  372982 Aug  5 16:35 LOGFILE
  464. -rw-r--r--   1 netsw  users     659 Aug  4 09:27 TODO
  465. -rw-r--r--   1 netsw  users    5697 Aug  1 18:01 netsw-about.html
  466. -rwxr-xr-x   1 netsw  users     579 Aug  2 10:33 netsw-access.pl
  467. -rwxr-xr-x   1 netsw  users    1532 Aug  1 17:35 netsw-changes.cgi
  468. -rwxr-xr-x   1 netsw  users    2866 Aug  5 14:49 netsw-home.cgi
  469. drwxr-xr-x   2 netsw  users     512 Jul  8 23:47 netsw-img/
  470. -rwxr-xr-x   1 netsw  users   24050 Aug  5 15:49 netsw-lsdir.cgi
  471. -rwxr-xr-x   1 netsw  users    1589 Aug  3 18:43 netsw-search.cgi
  472. -rwxr-xr-x   1 netsw  users    1885 Aug  1 17:41 netsw-tree.cgi
  473. -rw-r--r--   1 netsw  users     234 Jul 30 16:35 netsw-unlimit.lst
  474. </pre></example>
  475.  
  476.           <p>The <code>DATA/</code> subdirectory holds the above
  477.           directory structure, i.e. the real
  478.           <strong><em>net.sw</em></strong> stuff and gets
  479.           automatically updated via <code>rdist</code> from time to
  480.           time. The second part of the problem remains: how to link
  481.           these two structures together into one smooth-looking URL
  482.           tree? We want to hide the <code>DATA/</code> directory
  483.           from the user while running the appropriate CGI scripts
  484.           for the various URLs. Here is the solution: first I put
  485.           the following into the per-directory configuration file
  486.           in the <directive module="core">DocumentRoot</directive>
  487.           of the server to rewrite the announced URL
  488.           <code>/net.sw/</code> to the internal path
  489.           <code>/e/netsw</code>:</p>
  490.  
  491. <example><pre>
  492. RewriteRule  ^net.sw$       net.sw/        [R]
  493. RewriteRule  ^net.sw/(.*)$  e/netsw/$1
  494. </pre></example>
  495.  
  496.           <p>The first rule is for requests which miss the trailing
  497.           slash! The second rule does the real thing. And then
  498.           comes the killer configuration which stays in the
  499.           per-directory config file
  500.           <code>/e/netsw/.www/.wwwacl</code>:</p>
  501.  
  502. <example><pre>
  503. Options       ExecCGI FollowSymLinks Includes MultiViews
  504.  
  505. RewriteEngine on
  506.  
  507. #  we are reached via /net.sw/ prefix
  508. RewriteBase   /net.sw/
  509.  
  510. #  first we rewrite the root dir to
  511. #  the handling cgi script
  512. RewriteRule   ^$                       netsw-home.cgi     [L]
  513. RewriteRule   ^index\.html$            netsw-home.cgi     [L]
  514.  
  515. #  strip out the subdirs when
  516. #  the browser requests us from perdir pages
  517. RewriteRule   ^.+/(netsw-[^/]+/.+)$    $1                 [L]
  518.  
  519. #  and now break the rewriting for local files
  520. RewriteRule   ^netsw-home\.cgi.*       -                  [L]
  521. RewriteRule   ^netsw-changes\.cgi.*    -                  [L]
  522. RewriteRule   ^netsw-search\.cgi.*     -                  [L]
  523. RewriteRule   ^netsw-tree\.cgi$        -                  [L]
  524. RewriteRule   ^netsw-about\.html$      -                  [L]
  525. RewriteRule   ^netsw-img/.*$           -                  [L]
  526.  
  527. #  anything else is a subdir which gets handled
  528. #  by another cgi script
  529. RewriteRule   !^netsw-lsdir\.cgi.*     -                  [C]
  530. RewriteRule   (.*)                     netsw-lsdir.cgi/$1
  531. </pre></example>
  532.  
  533.           <p>Some hints for interpretation:</p>
  534.  
  535.           <ol>
  536.             <li>Notice the <code>L</code> (last) flag and no
  537.             substitution field ('<code>-</code>') in the forth part</li>
  538.  
  539.             <li>Notice the <code>!</code> (not) character and
  540.             the <code>C</code> (chain) flag at the first rule
  541.             in the last part</li>
  542.  
  543.             <li>Notice the catch-all pattern in the last rule</li>
  544.           </ol>
  545.         </dd>
  546.       </dl>
  547.  
  548.     </section>
  549.  
  550.     <section>
  551.  
  552.       <title>NCSA imagemap to Apache <code>mod_imap</code></title>
  553.  
  554.       <dl>
  555.         <dt>Description:</dt>
  556.  
  557.         <dd>
  558.           <p>When switching from the NCSA webserver to the more
  559.           modern Apache webserver a lot of people want a smooth
  560.           transition. So they want pages which use their old NCSA
  561.           <code>imagemap</code> program to work under Apache with the
  562.           modern <module>mod_imap</module>. The problem is that there
  563.           are a lot of hyperlinks around which reference the
  564.           <code>imagemap</code> program via
  565.           <code>/cgi-bin/imagemap/path/to/page.map</code>. Under
  566.           Apache this has to read just
  567.           <code>/path/to/page.map</code>.</p>
  568.         </dd>
  569.  
  570.         <dt>Solution:</dt>
  571.  
  572.         <dd>
  573.           <p>We use a global rule to remove the prefix on-the-fly for
  574.           all requests:</p>
  575.  
  576. <example><pre>
  577. RewriteEngine  on
  578. RewriteRule    ^/cgi-bin/imagemap(.*)  $1  [PT]
  579. </pre></example>
  580.         </dd>
  581.       </dl>
  582.  
  583.     </section>
  584.  
  585.     <section>
  586.  
  587.       <title>Search pages in more than one directory</title>
  588.  
  589.       <dl>
  590.         <dt>Description:</dt>
  591.  
  592.         <dd>
  593.           <p>Sometimes it is necessary to let the webserver search
  594.           for pages in more than one directory. Here MultiViews or
  595.           other techniques cannot help.</p>
  596.         </dd>
  597.  
  598.         <dt>Solution:</dt>
  599.  
  600.         <dd>
  601.           <p>We program a explicit ruleset which searches for the
  602.           files in the directories.</p>
  603.  
  604. <example><pre>
  605. RewriteEngine on
  606.  
  607. #   first try to find it in custom/...
  608. #   ...and if found stop and be happy:
  609. RewriteCond         /your/docroot/<strong>dir1</strong>/%{REQUEST_FILENAME}  -f
  610. RewriteRule  ^(.+)  /your/docroot/<strong>dir1</strong>/$1  [L]
  611.  
  612. #   second try to find it in pub/...
  613. #   ...and if found stop and be happy:
  614. RewriteCond         /your/docroot/<strong>dir2</strong>/%{REQUEST_FILENAME}  -f
  615. RewriteRule  ^(.+)  /your/docroot/<strong>dir2</strong>/$1  [L]
  616.  
  617. #   else go on for other Alias or ScriptAlias directives,
  618. #   etc.
  619. RewriteRule   ^(.+)  -  [PT]
  620. </pre></example>
  621.         </dd>
  622.       </dl>
  623.  
  624.     </section>
  625.  
  626.     <section>
  627.  
  628.       <title>Set Environment Variables According To URL Parts</title>
  629.  
  630.       <dl>
  631.         <dt>Description:</dt>
  632.  
  633.         <dd>
  634.           <p>Perhaps you want to keep status information between
  635.           requests and use the URL to encode it. But you don't want
  636.           to use a CGI wrapper for all pages just to strip out this
  637.           information.</p>
  638.         </dd>
  639.  
  640.         <dt>Solution:</dt>
  641.  
  642.         <dd>
  643.           <p>We use a rewrite rule to strip out the status information
  644.           and remember it via an environment variable which can be
  645.           later dereferenced from within XSSI or CGI. This way a
  646.           URL <code>/foo/S=java/bar/</code> gets translated to
  647.           <code>/foo/bar/</code> and the environment variable named
  648.           <code>STATUS</code> is set to the value "java".</p>
  649.  
  650. <example><pre>
  651. RewriteEngine on
  652. RewriteRule   ^(.*)/<strong>S=([^/]+)</strong>/(.*)    $1/$3 [E=<strong>STATUS:$2</strong>]
  653. </pre></example>
  654.         </dd>
  655.       </dl>
  656.  
  657.     </section>
  658.  
  659.     <section>
  660.  
  661.       <title>Virtual User Hosts</title>
  662.  
  663.       <dl>
  664.         <dt>Description:</dt>
  665.  
  666.         <dd>
  667.           <p>Assume that you want to provide
  668.           <code>www.<strong>username</strong>.host.domain.com</code>
  669.           for the homepage of username via just DNS A records to the
  670.           same machine and without any virtualhosts on this
  671.           machine.</p>
  672.         </dd>
  673.  
  674.         <dt>Solution:</dt>
  675.  
  676.         <dd>
  677.           <p>For HTTP/1.0 requests there is no solution, but for
  678.           HTTP/1.1 requests which contain a Host: HTTP header we
  679.           can use the following ruleset to rewrite
  680.           <code>http://www.username.host.com/anypath</code>
  681.           internally to <code>/home/username/anypath</code>:</p>
  682.  
  683. <example><pre>
  684. RewriteEngine on
  685. RewriteCond   %{<strong>HTTP_HOST</strong>}                 ^www\.<strong>[^.]+</strong>\.host\.com$
  686. RewriteRule   ^(.+)                        %{HTTP_HOST}$1          [C]
  687. RewriteRule   ^www\.<strong>([^.]+)</strong>\.host\.com(.*) /home/<strong>$1</strong>$2
  688. </pre></example>
  689.         </dd>
  690.       </dl>
  691.  
  692.     </section>
  693.  
  694.     <section>
  695.  
  696.       <title>Redirect Homedirs For Foreigners</title>
  697.  
  698.       <dl>
  699.         <dt>Description:</dt>
  700.  
  701.         <dd>
  702.           <p>We want to redirect homedir URLs to another webserver
  703.           <code>www.somewhere.com</code> when the requesting user
  704.           does not stay in the local domain
  705.           <code>ourdomain.com</code>. This is sometimes used in
  706.           virtual host contexts.</p>
  707.         </dd>
  708.  
  709.         <dt>Solution:</dt>
  710.  
  711.         <dd>
  712.           <p>Just a rewrite condition:</p>
  713.  
  714. <example><pre>
  715. RewriteEngine on
  716. RewriteCond   %{REMOTE_HOST}  <strong>!^.+\.ourdomain\.com$</strong>
  717. RewriteRule   ^(/~.+)         http://www.somewhere.com/$1 [R,L]
  718. </pre></example>
  719.         </dd>
  720.       </dl>
  721.  
  722.     </section>
  723.  
  724.     <section>
  725.  
  726.       <title>Redirect Failing URLs To Other Webserver</title>
  727.  
  728.       <dl>
  729.         <dt>Description:</dt>
  730.  
  731.         <dd>
  732.           <p>A typical FAQ about URL rewriting is how to redirect
  733.           failing requests on webserver A to webserver B. Usually
  734.           this is done via <directive module="core"
  735.           >ErrorDocument</directive> CGI-scripts in Perl, but
  736.           there is also a <module>mod_rewrite</module> solution.
  737.           But notice that this performs more poorly than using an
  738.           <directive module="core">ErrorDocument</directive>
  739.           CGI-script!</p>
  740.         </dd>
  741.  
  742.         <dt>Solution:</dt>
  743.  
  744.         <dd>
  745.           <p>The first solution has the best performance but less
  746.           flexibility, and is less error safe:</p>
  747.  
  748. <example><pre>
  749. RewriteEngine on
  750. RewriteCond   /your/docroot/%{REQUEST_FILENAME} <strong>!-f</strong>
  751. RewriteRule   ^(.+)                             http://<strong>webserverB</strong>.dom/$1
  752. </pre></example>
  753.  
  754.           <p>The problem here is that this will only work for pages
  755.           inside the <directive module="core">DocumentRoot</directive>. While you can add more
  756.           Conditions (for instance to also handle homedirs, etc.)
  757.           there is better variant:</p>
  758.  
  759. <example><pre>
  760. RewriteEngine on
  761. RewriteCond   %{REQUEST_URI} <strong>!-U</strong>
  762. RewriteRule   ^(.+)          http://<strong>webserverB</strong>.dom/$1
  763. </pre></example>
  764.  
  765.           <p>This uses the URL look-ahead feature of <module>mod_rewrite</module>.
  766.           The result is that this will work for all types of URLs
  767.           and is a safe way. But it does a performance impact on
  768.           the webserver, because for every request there is one
  769.           more internal subrequest. So, if your webserver runs on a
  770.           powerful CPU, use this one. If it is a slow machine, use
  771.           the first approach or better a <directive module="core"
  772.           >ErrorDocument</directive> CGI-script.</p>
  773.         </dd>
  774.       </dl>
  775.  
  776.     </section>
  777.  
  778.     <section>
  779.  
  780.       <title>Extended Redirection</title>
  781.  
  782.       <dl>
  783.         <dt>Description:</dt>
  784.  
  785.         <dd>
  786.           <p>Sometimes we need more control (concerning the
  787.           character escaping mechanism) of URLs on redirects.
  788.           Usually the Apache kernels URL escape function also
  789.           escapes anchors, i.e. URLs like "<code>url#anchor</code>".
  790.           You cannot use this directly on redirects with
  791.           <module>mod_rewrite</module> because the
  792.           <code>uri_escape()</code> function of Apache
  793.           would also escape the hash character.
  794.           How can we redirect to such a URL?</p>
  795.         </dd>
  796.  
  797.         <dt>Solution:</dt>
  798.  
  799.         <dd>
  800.           <p>We have to use a kludge by the use of a NPH-CGI script
  801.           which does the redirect itself. Because here no escaping
  802.           is done (NPH=non-parseable headers). First we introduce a
  803.           new URL scheme <code>xredirect:</code> by the following
  804.           per-server config-line (should be one of the last rewrite
  805.           rules):</p>
  806.  
  807. <example><pre>
  808. RewriteRule ^xredirect:(.+) /path/to/nph-xredirect.cgi/$1 \
  809.             [T=application/x-httpd-cgi,L]
  810. </pre></example>
  811.  
  812.           <p>This forces all URLs prefixed with
  813.           <code>xredirect:</code> to be piped through the
  814.           <code>nph-xredirect.cgi</code> program. And this program
  815.           just looks like:</p>
  816.  
  817. <example><pre>
  818. #!/path/to/perl
  819. ##
  820. ##  nph-xredirect.cgi -- NPH/CGI script for extended redirects
  821. ##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved.
  822. ##
  823.  
  824. $| = 1;
  825. $url = $ENV{'PATH_INFO'};
  826.  
  827. print "HTTP/1.0 302 Moved Temporarily\n";
  828. print "Server: $ENV{'SERVER_SOFTWARE'}\n";
  829. print "Location: $url\n";
  830. print "Content-type: text/html\n";
  831. print "\n";
  832. print "<html>\n";
  833. print "<head>\n";
  834. print "<title>302 Moved Temporarily (EXTENDED)</title>\n";
  835. print "</head>\n";
  836. print "<body>\n";
  837. print "<h1>Moved Temporarily (EXTENDED)</h1>\n";
  838. print "The document has moved <a HREF=\"$url\">here</a>.<p>\n";
  839. print "</body>\n";
  840. print "</html>\n";
  841.  
  842. ##EOF##
  843. </pre></example>
  844.  
  845.           <p>This provides you with the functionality to do
  846.           redirects to all URL schemes, i.e. including the one
  847.           which are not directly accepted by <module>mod_rewrite</module>.
  848.           For instance you can now also redirect to
  849.           <code>news:newsgroup</code> via</p>
  850.  
  851. <example><pre>
  852. RewriteRule ^anyurl  xredirect:news:newsgroup
  853. </pre></example>
  854.  
  855.           <note>Notice: You have not to put <code>[R]</code> or
  856.           <code>[R,L]</code> to the above rule because the
  857.           <code>xredirect:</code> need to be expanded later
  858.           by our special "pipe through" rule above.</note>
  859.         </dd>
  860.       </dl>
  861.  
  862.     </section>
  863.  
  864.     <section>
  865.  
  866.       <title>Archive Access Multiplexer</title>
  867.  
  868.       <dl>
  869.         <dt>Description:</dt>
  870.  
  871.         <dd>
  872.           <p>Do you know the great CPAN (Comprehensive Perl Archive
  873.           Network) under <a href="http://www.perl.com/CPAN"
  874.           >http://www.perl.com/CPAN</a>?
  875.           This does a redirect to one of several FTP servers around
  876.           the world which carry a CPAN mirror and is approximately
  877.           near the location of the requesting client. Actually this
  878.           can be called an FTP access multiplexing service. While
  879.           CPAN runs via CGI scripts, how can a similar approach
  880.           implemented via <module>mod_rewrite</module>?</p>
  881.         </dd>
  882.  
  883.         <dt>Solution:</dt>
  884.  
  885.         <dd>
  886.           <p>First we notice that from version 3.0.0
  887.           <module>mod_rewrite</module> can
  888.           also use the "<code>ftp:</code>" scheme on redirects.
  889.           And second, the location approximation can be done by a
  890.           <directive module="mod_rewrite">RewriteMap</directive>
  891.           over the top-level domain of the client.
  892.           With a tricky chained ruleset we can use this top-level
  893.           domain as a key to our multiplexing map.</p>
  894.  
  895. <example><pre>
  896. RewriteEngine on
  897. RewriteMap    multiplex                txt:/path/to/map.cxan
  898. RewriteRule   ^/CxAN/(.*)              %{REMOTE_HOST}::$1                 [C]
  899. RewriteRule   ^.+\.<strong>([a-zA-Z]+)</strong>::(.*)$  ${multiplex:<strong>$1</strong>|ftp.default.dom}$2  [R,L]
  900. </pre></example>
  901.  
  902. <example><pre>
  903. ##
  904. ##  map.cxan -- Multiplexing Map for CxAN
  905. ##
  906.  
  907. de        ftp://ftp.cxan.de/CxAN/
  908. uk        ftp://ftp.cxan.uk/CxAN/
  909. com       ftp://ftp.cxan.com/CxAN/
  910.  :
  911. ##EOF##
  912. </pre></example>
  913.         </dd>
  914.       </dl>
  915.  
  916.     </section>
  917.  
  918.     <section>
  919.  
  920.       <title>Time-Dependent Rewriting</title>
  921.  
  922.       <dl>
  923.         <dt>Description:</dt>
  924.  
  925.         <dd>
  926.           <p>When tricks like time-dependent content should happen a
  927.           lot of webmasters still use CGI scripts which do for
  928.           instance redirects to specialized pages. How can it be done
  929.           via <module>mod_rewrite</module>?</p>
  930.         </dd>
  931.  
  932.         <dt>Solution:</dt>
  933.  
  934.         <dd>
  935.           <p>There are a lot of variables named <code>TIME_xxx</code>
  936.           for rewrite conditions. In conjunction with the special
  937.           lexicographic comparison patterns <code><STRING</code>,
  938.           <code>>STRING</code> and <code>=STRING</code> we can
  939.           do time-dependent redirects:</p>
  940.  
  941. <example><pre>
  942. RewriteEngine on
  943. RewriteCond   %{TIME_HOUR}%{TIME_MIN} >0700
  944. RewriteCond   %{TIME_HOUR}%{TIME_MIN} <1900
  945. RewriteRule   ^foo\.html$             foo.day.html
  946. RewriteRule   ^foo\.html$             foo.night.html
  947. </pre></example>
  948.  
  949.           <p>This provides the content of <code>foo.day.html</code>
  950.           under the URL <code>foo.html</code> from
  951.           <code>07:00-19:00</code> and at the remaining time the
  952.           contents of <code>foo.night.html</code>. Just a nice
  953.           feature for a homepage...</p>
  954.         </dd>
  955.       </dl>
  956.  
  957.     </section>
  958.  
  959.     <section>
  960.  
  961.       <title>Backward Compatibility for YYYY to XXXX migration</title>
  962.  
  963.       <dl>
  964.         <dt>Description:</dt>
  965.  
  966.         <dd>
  967.           <p>How can we make URLs backward compatible (still
  968.           existing virtually) after migrating <code>document.YYYY</code>
  969.           to <code>document.XXXX</code>, e.g. after translating a
  970.           bunch of <code>.html</code> files to <code>.phtml</code>?</p>
  971.         </dd>
  972.  
  973.         <dt>Solution:</dt>
  974.  
  975.         <dd>
  976.           <p>We just rewrite the name to its basename and test for
  977.           existence of the new extension. If it exists, we take
  978.           that name, else we rewrite the URL to its original state.</p>
  979.  
  980.  
  981. <example><pre>
  982. #   backward compatibility ruleset for
  983. #   rewriting document.html to document.phtml
  984. #   when and only when document.phtml exists
  985. #   but no longer document.html
  986. RewriteEngine on
  987. RewriteBase   /~quux/
  988. #   parse out basename, but remember the fact
  989. RewriteRule   ^(.*)\.html$              $1      [C,E=WasHTML:yes]
  990. #   rewrite to document.phtml if exists
  991. RewriteCond   %{REQUEST_FILENAME}.phtml -f
  992. RewriteRule   ^(.*)$ $1.phtml                   [S=1]
  993. #   else reverse the previous basename cutout
  994. RewriteCond   %{ENV:WasHTML}            ^yes$
  995. RewriteRule   ^(.*)$ $1.html
  996. </pre></example>
  997.         </dd>
  998.       </dl>
  999.  
  1000.     </section>
  1001.  
  1002.   </section>
  1003.  
  1004.   <section id="content">
  1005.  
  1006.     <title>Content Handling</title>
  1007.  
  1008.     <section>
  1009.  
  1010.       <title>From Old to New (intern)</title>
  1011.  
  1012.       <dl>
  1013.         <dt>Description:</dt>
  1014.  
  1015.         <dd>
  1016.           <p>Assume we have recently renamed the page
  1017.           <code>foo.html</code> to <code>bar.html</code> and now want
  1018.           to provide the old URL for backward compatibility. Actually
  1019.           we want that users of the old URL even not recognize that
  1020.           the pages was renamed.</p>
  1021.         </dd>
  1022.  
  1023.         <dt>Solution:</dt>
  1024.  
  1025.         <dd>
  1026.           <p>We rewrite the old URL to the new one internally via the
  1027.           following rule:</p>
  1028.  
  1029. <example><pre>
  1030. RewriteEngine  on
  1031. RewriteBase    /~quux/
  1032. RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html
  1033. </pre></example>
  1034.         </dd>
  1035.       </dl>
  1036.  
  1037.     </section>
  1038.  
  1039.     <section>
  1040.  
  1041.       <title>From Old to New (extern)</title>
  1042.  
  1043.       <dl>
  1044.         <dt>Description:</dt>
  1045.  
  1046.         <dd>
  1047.           <p>Assume again that we have recently renamed the page
  1048.           <code>foo.html</code> to <code>bar.html</code> and now want
  1049.           to provide the old URL for backward compatibility. But this
  1050.           time we want that the users of the old URL get hinted to
  1051.           the new one, i.e. their browsers Location field should
  1052.           change, too.</p>
  1053.         </dd>
  1054.  
  1055.         <dt>Solution:</dt>
  1056.  
  1057.         <dd>
  1058.           <p>We force a HTTP redirect to the new URL which leads to a
  1059.           change of the browsers and thus the users view:</p>
  1060.  
  1061. <example><pre>
  1062. RewriteEngine  on
  1063. RewriteBase    /~quux/
  1064. RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html  [<strong>R</strong>]
  1065. </pre></example>
  1066.         </dd>
  1067.       </dl>
  1068.  
  1069.     </section>
  1070.  
  1071.     <section>
  1072.  
  1073.       <title>Browser Dependent Content</title>
  1074.  
  1075.       <dl>
  1076.         <dt>Description:</dt>
  1077.  
  1078.         <dd>
  1079.           <p>At least for important top-level pages it is sometimes
  1080.           necessary to provide the optimum of browser dependent
  1081.           content, i.e. one has to provide a maximum version for the
  1082.           latest Netscape variants, a minimum version for the Lynx
  1083.           browsers and a average feature version for all others.</p>
  1084.         </dd>
  1085.  
  1086.         <dt>Solution:</dt>
  1087.  
  1088.         <dd>
  1089.           <p>We cannot use content negotiation because the browsers do
  1090.           not provide their type in that form. Instead we have to
  1091.           act on the HTTP header "User-Agent". The following condig
  1092.           does the following: If the HTTP header "User-Agent"
  1093.           begins with "Mozilla/3", the page <code>foo.html</code>
  1094.           is rewritten to <code>foo.NS.html</code> and and the
  1095.           rewriting stops. If the browser is "Lynx" or "Mozilla" of
  1096.           version 1 or 2 the URL becomes <code>foo.20.html</code>.
  1097.           All other browsers receive page <code>foo.32.html</code>.
  1098.           This is done by the following ruleset:</p>
  1099.  
  1100. <example><pre>
  1101. RewriteCond %{HTTP_USER_AGENT}  ^<strong>Mozilla/3</strong>.*
  1102. RewriteRule ^foo\.html$         foo.<strong>NS</strong>.html          [<strong>L</strong>]
  1103.  
  1104. RewriteCond %{HTTP_USER_AGENT}  ^<strong>Lynx/</strong>.*         [OR]
  1105. RewriteCond %{HTTP_USER_AGENT}  ^<strong>Mozilla/[12]</strong>.*
  1106. RewriteRule ^foo\.html$         foo.<strong>20</strong>.html          [<strong>L</strong>]
  1107.  
  1108. RewriteRule ^foo\.html$         foo.<strong>32</strong>.html          [<strong>L</strong>]
  1109. </pre></example>
  1110.         </dd>
  1111.       </dl>
  1112.  
  1113.     </section>
  1114.  
  1115.     <section>
  1116.  
  1117.       <title>Dynamic Mirror</title>
  1118.  
  1119.       <dl>
  1120.         <dt>Description:</dt>
  1121.  
  1122.         <dd>
  1123.           <p>Assume there are nice webpages on remote hosts we want
  1124.           to bring into our namespace. For FTP servers we would use
  1125.           the <code>mirror</code> program which actually maintains an
  1126.           explicit up-to-date copy of the remote data on the local
  1127.           machine. For a webserver we could use the program
  1128.           <code>webcopy</code> which acts similar via HTTP. But both
  1129.           techniques have one major drawback: The local copy is
  1130.           always just as up-to-date as often we run the program. It
  1131.           would be much better if the mirror is not a static one we
  1132.           have to establish explicitly. Instead we want a dynamic
  1133.           mirror with data which gets updated automatically when
  1134.           there is need (updated data on the remote host).</p>
  1135.         </dd>
  1136.  
  1137.         <dt>Solution:</dt>
  1138.  
  1139.         <dd>
  1140.           <p>To provide this feature we map the remote webpage or even
  1141.           the complete remote webarea to our namespace by the use
  1142.           of the <dfn>Proxy Throughput</dfn> feature
  1143.           (flag <code>[P]</code>):</p>
  1144.  
  1145. <example><pre>
  1146. RewriteEngine  on
  1147. RewriteBase    /~quux/
  1148. RewriteRule    ^<strong>hotsheet/</strong>(.*)$  <strong>http://www.tstimpreso.com/hotsheet/</strong>$1  [<strong>P</strong>]
  1149. </pre></example>
  1150.  
  1151. <example><pre>
  1152. RewriteEngine  on
  1153. RewriteBase    /~quux/
  1154. RewriteRule    ^<strong>usa-news\.html</strong>$   <strong>http://www.quux-corp.com/news/index.html</strong>  [<strong>P</strong>]
  1155. </pre></example>
  1156.         </dd>
  1157.       </dl>
  1158.  
  1159.     </section>
  1160.  
  1161.     <section>
  1162.  
  1163.       <title>Reverse Dynamic Mirror</title>
  1164.  
  1165.       <dl>
  1166.         <dt>Description:</dt>
  1167.  
  1168.         <dd>...</dd>
  1169.  
  1170.         <dt>Solution:</dt>
  1171.  
  1172.         <dd>
  1173. <example><pre>
  1174. RewriteEngine on
  1175. RewriteCond   /mirror/of/remotesite/$1           -U
  1176. RewriteRule   ^http://www\.remotesite\.com/(.*)$ /mirror/of/remotesite/$1
  1177. </pre></example>
  1178.         </dd>
  1179.       </dl>
  1180.  
  1181.     </section>
  1182.  
  1183.     <section>
  1184.  
  1185.       <title>Retrieve Missing Data from Intranet</title>
  1186.  
  1187.       <dl>
  1188.         <dt>Description:</dt>
  1189.  
  1190.         <dd>
  1191.           <p>This is a tricky way of virtually running a corporate
  1192.           (external) Internet webserver
  1193.           (<code>www.quux-corp.dom</code>), while actually keeping
  1194.           and maintaining its data on a (internal) Intranet webserver
  1195.           (<code>www2.quux-corp.dom</code>) which is protected by a
  1196.           firewall. The trick is that on the external webserver we
  1197.           retrieve the requested data on-the-fly from the internal
  1198.           one.</p>
  1199.         </dd>
  1200.  
  1201.         <dt>Solution:</dt>
  1202.  
  1203.         <dd>
  1204.           <p>First, we have to make sure that our firewall still
  1205.           protects the internal webserver and that only the
  1206.           external webserver is allowed to retrieve data from it.
  1207.           For a packet-filtering firewall we could for instance
  1208.           configure a firewall ruleset like the following:</p>
  1209.  
  1210. <example><pre>
  1211. <strong>ALLOW</strong> Host www.quux-corp.dom Port >1024 --> Host www2.quux-corp.dom Port <strong>80</strong>
  1212. <strong>DENY</strong>  Host *                 Port *     --> Host www2.quux-corp.dom Port <strong>80</strong>
  1213. </pre></example>
  1214.  
  1215.           <p>Just adjust it to your actual configuration syntax.
  1216.           Now we can establish the <module>mod_rewrite</module>
  1217.           rules which request the missing data in the background
  1218.           through the proxy throughput feature:</p>
  1219.  
  1220. <example><pre>
  1221. RewriteRule ^/~([^/]+)/?(.*)          /home/$1/.www/$2
  1222. RewriteCond %{REQUEST_FILENAME}       <strong>!-f</strong>
  1223. RewriteCond %{REQUEST_FILENAME}       <strong>!-d</strong>
  1224. RewriteRule ^/home/([^/]+)/.www/?(.*) http://<strong>www2</strong>.quux-corp.dom/~$1/pub/$2 [<strong>P</strong>]
  1225. </pre></example>
  1226.         </dd>
  1227.       </dl>
  1228.  
  1229.     </section>
  1230.  
  1231.     <section>
  1232.  
  1233.       <title>Load Balancing</title>
  1234.  
  1235.       <dl>
  1236.         <dt>Description:</dt>
  1237.  
  1238.         <dd>
  1239.           <p>Suppose we want to load balance the traffic to
  1240.           <code>www.foo.com</code> over <code>www[0-5].foo.com</code>
  1241.           (a total of 6 servers). How can this be done?</p>
  1242.         </dd>
  1243.  
  1244.         <dt>Solution:</dt>
  1245.  
  1246.         <dd>
  1247.           <p>There are a lot of possible solutions for this problem.
  1248.           We will discuss first a commonly known DNS-based variant
  1249.           and then the special one with <module>mod_rewrite</module>:</p>
  1250.  
  1251.           <ol>
  1252.             <li>
  1253.               <strong>DNS Round-Robin</strong>
  1254.  
  1255.               <p>The simplest method for load-balancing is to use
  1256.               the DNS round-robin feature of <code>BIND</code>.
  1257.               Here you just configure <code>www[0-9].foo.com</code>
  1258.               as usual in your DNS with A(address) records, e.g.</p>
  1259.  
  1260. <example><pre>
  1261. www0   IN  A       1.2.3.1
  1262. www1   IN  A       1.2.3.2
  1263. www2   IN  A       1.2.3.3
  1264. www3   IN  A       1.2.3.4
  1265. www4   IN  A       1.2.3.5
  1266. www5   IN  A       1.2.3.6
  1267. </pre></example>
  1268.  
  1269.               <p>Then you additionally add the following entry:</p>
  1270.  
  1271. <example><pre>
  1272. www    IN  CNAME   www0.foo.com.
  1273.        IN  CNAME   www1.foo.com.
  1274.        IN  CNAME   www2.foo.com.
  1275.        IN  CNAME   www3.foo.com.
  1276.        IN  CNAME   www4.foo.com.
  1277.        IN  CNAME   www5.foo.com.
  1278.        IN  CNAME   www6.foo.com.
  1279. </pre></example>
  1280.  
  1281.               <p>Notice that this seems wrong, but is actually an
  1282.               intended feature of <code>BIND</code> and can be used
  1283.               in this way. However, now when <code>www.foo.com</code> gets
  1284.               resolved, <code>BIND</code> gives out <code>www0-www6</code>
  1285.               - but in a slightly permutated/rotated order every time.
  1286.               This way the clients are spread over the various
  1287.               servers. But notice that this not a perfect load
  1288.               balancing scheme, because DNS resolve information
  1289.               gets cached by the other nameservers on the net, so
  1290.               once a client has resolved <code>www.foo.com</code>
  1291.               to a particular <code>wwwN.foo.com</code>, all
  1292.               subsequent requests also go to this particular name
  1293.               <code>wwwN.foo.com</code>. But the final result is
  1294.               ok, because the total sum of the requests are really
  1295.               spread over the various webservers.</p>
  1296.             </li>
  1297.  
  1298.             <li>
  1299.               <strong>DNS Load-Balancing</strong>
  1300.  
  1301.               <p>A sophisticated DNS-based method for
  1302.               load-balancing is to use the program
  1303.               <code>lbnamed</code> which can be found at <a
  1304.               href="http://www.stanford.edu/~schemers/docs/lbnamed/lbnamed.html">
  1305.               http://www.stanford.edu/~schemers/docs/lbnamed/lbnamed.html</a>.
  1306.               It is a Perl 5 program in conjunction with auxilliary
  1307.               tools which provides a real load-balancing for
  1308.               DNS.</p>
  1309.             </li>
  1310.  
  1311.             <li>
  1312.               <strong>Proxy Throughput Round-Robin</strong>
  1313.  
  1314.               <p>In this variant we use <module>mod_rewrite</module>
  1315.               and its proxy throughput feature. First we dedicate
  1316.               <code>www0.foo.com</code> to be actually
  1317.               <code>www.foo.com</code> by using a single</p>
  1318.  
  1319. <example><pre>
  1320. www    IN  CNAME   www0.foo.com.
  1321. </pre></example>
  1322.  
  1323.               <p>entry in the DNS. Then we convert
  1324.               <code>www0.foo.com</code> to a proxy-only server,
  1325.               i.e. we configure this machine so all arriving URLs
  1326.               are just pushed through the internal proxy to one of
  1327.               the 5 other servers (<code>www1-www5</code>). To
  1328.               accomplish this we first establish a ruleset which
  1329.               contacts a load balancing script <code>lb.pl</code>
  1330.               for all URLs.</p>
  1331.  
  1332. <example><pre>
  1333. RewriteEngine on
  1334. RewriteMap    lb      prg:/path/to/lb.pl
  1335. RewriteRule   ^/(.+)$ ${lb:$1}           [P,L]
  1336. </pre></example>
  1337.  
  1338.               <p>Then we write <code>lb.pl</code>:</p>
  1339.  
  1340. <example><pre>
  1341. #!/path/to/perl
  1342. ##
  1343. ##  lb.pl -- load balancing script
  1344. ##
  1345.  
  1346. $| = 1;
  1347.  
  1348. $name   = "www";     # the hostname base
  1349. $first  = 1;         # the first server (not 0 here, because 0 is myself)
  1350. $last   = 5;         # the last server in the round-robin
  1351. $domain = "foo.dom"; # the domainname
  1352.  
  1353. $cnt = 0;
  1354. while (<STDIN>) {
  1355.     $cnt = (($cnt+1) % ($last+1-$first));
  1356.     $server = sprintf("%s%d.%s", $name, $cnt+$first, $domain);
  1357.     print "http://$server/$_";
  1358. }
  1359.  
  1360. ##EOF##
  1361. </pre></example>
  1362.  
  1363.               <note>A last notice: Why is this useful? Seems like
  1364.               <code>www0.foo.com</code> still is overloaded? The
  1365.               answer is yes, it is overloaded, but with plain proxy
  1366.               throughput requests, only! All SSI, CGI, ePerl, etc.
  1367.               processing is completely done on the other machines.
  1368.               This is the essential point.</note>
  1369.             </li>
  1370.  
  1371.             <li>
  1372.               <strong>Hardware/TCP Round-Robin</strong>
  1373.  
  1374.               <p>There is a hardware solution available, too. Cisco
  1375.               has a beast called LocalDirector which does a load
  1376.               balancing at the TCP/IP level. Actually this is some
  1377.               sort of a circuit level gateway in front of a
  1378.               webcluster. If you have enough money and really need
  1379.               a solution with high performance, use this one.</p>
  1380.             </li>
  1381.           </ol>
  1382.         </dd>
  1383.       </dl>
  1384.  
  1385.     </section>
  1386.  
  1387.     <section>
  1388.  
  1389.       <title>New MIME-type, New Service</title>
  1390.  
  1391.       <dl>
  1392.         <dt>Description:</dt>
  1393.  
  1394.         <dd>
  1395.           <p>On the net there are a lot of nifty CGI programs. But
  1396.           their usage is usually boring, so a lot of webmaster
  1397.           don't use them. Even Apache's Action handler feature for
  1398.           MIME-types is only appropriate when the CGI programs
  1399.           don't need special URLs (actually <code>PATH_INFO</code>
  1400.           and <code>QUERY_STRINGS</code>) as their input. First,
  1401.           let us configure a new file type with extension
  1402.           <code>.scgi</code> (for secure CGI) which will be processed
  1403.           by the popular <code>cgiwrap</code> program. The problem
  1404.           here is that for instance we use a Homogeneous URL Layout
  1405.           (see above) a file inside the user homedirs has the URL
  1406.           <code>/u/user/foo/bar.scgi</code>. But
  1407.           <code>cgiwrap</code> needs the URL in the form
  1408.           <code>/~user/foo/bar.scgi/</code>. The following rule
  1409.           solves the problem:</p>
  1410.  
  1411. <example><pre>
  1412. RewriteRule ^/[uge]/<strong>([^/]+)</strong>/\.www/(.+)\.scgi(.*) ...
  1413. ... /internal/cgi/user/cgiwrap/~<strong>$1</strong>/$2.scgi$3  [NS,<strong>T=application/x-http-cgi</strong>]
  1414. </pre></example>
  1415.  
  1416.           <p>Or assume we have some more nifty programs:
  1417.           <code>wwwlog</code> (which displays the
  1418.           <code>access.log</code> for a URL subtree and
  1419.           <code>wwwidx</code> (which runs Glimpse on a URL
  1420.           subtree). We have to provide the URL area to these
  1421.           programs so they know on which area they have to act on.
  1422.           But usually this ugly, because they are all the times
  1423.           still requested from that areas, i.e. typically we would
  1424.           run the <code>swwidx</code> program from within
  1425.           <code>/u/user/foo/</code> via hyperlink to</p>
  1426.  
  1427. <example><pre>
  1428. /internal/cgi/user/swwidx?i=/u/user/foo/
  1429. </pre></example>
  1430.  
  1431.           <p>which is ugly. Because we have to hard-code
  1432.           <strong>both</strong> the location of the area
  1433.           <strong>and</strong> the location of the CGI inside the
  1434.           hyperlink. When we have to reorganize the area, we spend a
  1435.           lot of time changing the various hyperlinks.</p>
  1436.         </dd>
  1437.  
  1438.         <dt>Solution:</dt>
  1439.  
  1440.         <dd>
  1441.           <p>The solution here is to provide a special new URL format
  1442.           which automatically leads to the proper CGI invocation.
  1443.           We configure the following:</p>
  1444.  
  1445. <example><pre>
  1446. RewriteRule   ^/([uge])/([^/]+)(/?.*)/\*  /internal/cgi/user/wwwidx?i=/$1/$2$3/
  1447. RewriteRule   ^/([uge])/([^/]+)(/?.*):log /internal/cgi/user/wwwlog?f=/$1/$2$3
  1448. </pre></example>
  1449.  
  1450.           <p>Now the hyperlink to search at
  1451.           <code>/u/user/foo/</code> reads only</p>
  1452.  
  1453. <example><pre>
  1454. HREF="*"
  1455. </pre></example>
  1456.  
  1457.           <p>which internally gets automatically transformed to</p>
  1458.  
  1459. <example><pre>
  1460. /internal/cgi/user/wwwidx?i=/u/user/foo/
  1461. </pre></example>
  1462.  
  1463.           <p>The same approach leads to an invocation for the
  1464.           access log CGI program when the hyperlink
  1465.           <code>:log</code> gets used.</p>
  1466.         </dd>
  1467.       </dl>
  1468.  
  1469.     </section>
  1470.  
  1471.     <section>
  1472.  
  1473.       <title>From Static to Dynamic</title>
  1474.  
  1475.       <dl>
  1476.         <dt>Description:</dt>
  1477.  
  1478.         <dd>
  1479.           <p>How can we transform a static page
  1480.           <code>foo.html</code> into a dynamic variant
  1481.           <code>foo.cgi</code> in a seamless way, i.e. without notice
  1482.           by the browser/user.</p>
  1483.         </dd>
  1484.  
  1485.         <dt>Solution:</dt>
  1486.  
  1487.         <dd>
  1488.           <p>We just rewrite the URL to the CGI-script and force the
  1489.           correct MIME-type so it gets really run as a CGI-script.
  1490.           This way a request to <code>/~quux/foo.html</code>
  1491.           internally leads to the invocation of
  1492.           <code>/~quux/foo.cgi</code>.</p>
  1493.  
  1494. <example><pre>
  1495. RewriteEngine  on
  1496. RewriteBase    /~quux/
  1497. RewriteRule    ^foo\.<strong>html</strong>$  foo.<strong>cgi</strong>  [T=<strong>application/x-httpd-cgi</strong>]
  1498. </pre></example>
  1499.         </dd>
  1500.       </dl>
  1501.  
  1502.     </section>
  1503.  
  1504.     <section>
  1505.  
  1506.       <title>On-the-fly Content-Regeneration</title>
  1507.  
  1508.       <dl>
  1509.         <dt>Description:</dt>
  1510.  
  1511.         <dd>
  1512.           <p>Here comes a really esoteric feature: Dynamically
  1513.           generated but statically served pages, i.e. pages should be
  1514.           delivered as pure static pages (read from the filesystem
  1515.           and just passed through), but they have to be generated
  1516.           dynamically by the webserver if missing. This way you can
  1517.           have CGI-generated pages which are statically served unless
  1518.           one (or a cronjob) removes the static contents. Then the
  1519.           contents gets refreshed.</p>
  1520.         </dd>
  1521.  
  1522.         <dt>Solution:</dt>
  1523.  
  1524.         <dd>
  1525.           This is done via the following ruleset:
  1526.  
  1527. <example><pre>
  1528. RewriteCond %{REQUEST_FILENAME}   <strong>!-s</strong>
  1529. RewriteRule ^page\.<strong>html</strong>$          page.<strong>cgi</strong>   [T=application/x-httpd-cgi,L]
  1530. </pre></example>
  1531.  
  1532.           <p>Here a request to <code>page.html</code> leads to a
  1533.           internal run of a corresponding <code>page.cgi</code> if
  1534.           <code>page.html</code> is still missing or has filesize
  1535.           null. The trick here is that <code>page.cgi</code> is a
  1536.           usual CGI script which (additionally to its <code>STDOUT</code>)
  1537.           writes its output to the file <code>page.html</code>.
  1538.           Once it was run, the server sends out the data of
  1539.           <code>page.html</code>. When the webmaster wants to force
  1540.           a refresh the contents, he just removes
  1541.           <code>page.html</code> (usually done by a cronjob).</p>
  1542.         </dd>
  1543.       </dl>
  1544.  
  1545.     </section>
  1546.  
  1547.     <section>
  1548.  
  1549.       <title>Document With Autorefresh</title>
  1550.  
  1551.       <dl>
  1552.         <dt>Description:</dt>
  1553.  
  1554.         <dd>
  1555.           <p>Wouldn't it be nice while creating a complex webpage if
  1556.           the webbrowser would automatically refresh the page every
  1557.           time we write a new version from within our editor?
  1558.           Impossible?</p>
  1559.         </dd>
  1560.  
  1561.         <dt>Solution:</dt>
  1562.  
  1563.         <dd>
  1564.           <p>No! We just combine the MIME multipart feature, the
  1565.           webserver NPH feature and the URL manipulation power of
  1566.           <module>mod_rewrite</module>. First, we establish a new
  1567.           URL feature: Adding just <code>:refresh</code> to any
  1568.           URL causes this to be refreshed every time it gets
  1569.           updated on the filesystem.</p>
  1570.  
  1571. <example><pre>
  1572. RewriteRule   ^(/[uge]/[^/]+/?.*):refresh  /internal/cgi/apache/nph-refresh?f=$1
  1573. </pre></example>
  1574.  
  1575.           <p>Now when we reference the URL</p>
  1576.  
  1577. <example><pre>
  1578. /u/foo/bar/page.html:refresh
  1579. </pre></example>
  1580.  
  1581.           <p>this leads to the internal invocation of the URL</p>
  1582.  
  1583. <example><pre>
  1584. /internal/cgi/apache/nph-refresh?f=/u/foo/bar/page.html
  1585. </pre></example>
  1586.  
  1587.           <p>The only missing part is the NPH-CGI script. Although
  1588.           one would usually say "left as an exercise to the reader"
  1589.           ;-) I will provide this, too.</p>
  1590.  
  1591. <example><pre>
  1592. #!/sw/bin/perl
  1593. ##
  1594. ##  nph-refresh -- NPH/CGI script for auto refreshing pages
  1595. ##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved.
  1596. ##
  1597. $| = 1;
  1598.  
  1599. #   split the QUERY_STRING variable
  1600. @pairs = split(/&/, $ENV{'QUERY_STRING'});
  1601. foreach $pair (@pairs) {
  1602.     ($name, $value) = split(/=/, $pair);
  1603.     $name =~ tr/A-Z/a-z/;
  1604.     $name = 'QS_' . $name;
  1605.     $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
  1606.     eval "\$$name = \"$value\"";
  1607. }
  1608. $QS_s = 1 if ($QS_s eq '');
  1609. $QS_n = 3600 if ($QS_n eq '');
  1610. if ($QS_f eq '') {
  1611.     print "HTTP/1.0 200 OK\n";
  1612.     print "Content-type: text/html\n\n";
  1613.     print "&lt;b&gt;ERROR&lt;/b&gt;: No file given\n";
  1614.     exit(0);
  1615. }
  1616. if (! -f $QS_f) {
  1617.     print "HTTP/1.0 200 OK\n";
  1618.     print "Content-type: text/html\n\n";
  1619.     print "&lt;b&gt;ERROR&lt;/b&gt;: File $QS_f not found\n";
  1620.     exit(0);
  1621. }
  1622.  
  1623. sub print_http_headers_multipart_begin {
  1624.     print "HTTP/1.0 200 OK\n";
  1625.     $bound = "ThisRandomString12345";
  1626.     print "Content-type: multipart/x-mixed-replace;boundary=$bound\n";
  1627.     &print_http_headers_multipart_next;
  1628. }
  1629.  
  1630. sub print_http_headers_multipart_next {
  1631.     print "\n--$bound\n";
  1632. }
  1633.  
  1634. sub print_http_headers_multipart_end {
  1635.     print "\n--$bound--\n";
  1636. }
  1637.  
  1638. sub displayhtml {
  1639.     local($buffer) = @_;
  1640.     $len = length($buffer);
  1641.     print "Content-type: text/html\n";
  1642.     print "Content-length: $len\n\n";
  1643.     print $buffer;
  1644. }
  1645.  
  1646. sub readfile {
  1647.     local($file) = @_;
  1648.     local(*FP, $size, $buffer, $bytes);
  1649.     ($x, $x, $x, $x, $x, $x, $x, $size) = stat($file);
  1650.     $size = sprintf("%d", $size);
  1651.     open(FP, "&lt;$file");
  1652.     $bytes = sysread(FP, $buffer, $size);
  1653.     close(FP);
  1654.     return $buffer;
  1655. }
  1656.  
  1657. $buffer = &readfile($QS_f);
  1658. &print_http_headers_multipart_begin;
  1659. &displayhtml($buffer);
  1660.  
  1661. sub mystat {
  1662.     local($file) = $_[0];
  1663.     local($time);
  1664.  
  1665.     ($x, $x, $x, $x, $x, $x, $x, $x, $x, $mtime) = stat($file);
  1666.     return $mtime;
  1667. }
  1668.  
  1669. $mtimeL = &mystat($QS_f);
  1670. $mtime = $mtime;
  1671. for ($n = 0; $n &lt; $QS_n; $n++) {
  1672.     while (1) {
  1673.         $mtime = &mystat($QS_f);
  1674.         if ($mtime ne $mtimeL) {
  1675.             $mtimeL = $mtime;
  1676.             sleep(2);
  1677.             $buffer = &readfile($QS_f);
  1678.             &print_http_headers_multipart_next;
  1679.             &displayhtml($buffer);
  1680.             sleep(5);
  1681.             $mtimeL = &mystat($QS_f);
  1682.             last;
  1683.         }
  1684.         sleep($QS_s);
  1685.     }
  1686. }
  1687.  
  1688. &print_http_headers_multipart_end;
  1689.  
  1690. exit(0);
  1691.  
  1692. ##EOF##
  1693. </pre></example>
  1694.         </dd>
  1695.       </dl>
  1696.  
  1697.     </section>
  1698.  
  1699.     <section>
  1700.  
  1701.       <title>Mass Virtual Hosting</title>
  1702.  
  1703.       <dl>
  1704.         <dt>Description:</dt>
  1705.  
  1706.         <dd>
  1707.           <p>The <directive type="section" module="core"
  1708.           >VirtualHost</directive> feature of Apache is nice
  1709.           and works great when you just have a few dozens
  1710.           virtual hosts. But when you are an ISP and have hundreds of
  1711.           virtual hosts to provide this feature is not the best
  1712.           choice.</p>
  1713.         </dd>
  1714.  
  1715.         <dt>Solution:</dt>
  1716.  
  1717.         <dd>
  1718.           <p>To provide this feature we map the remote webpage or even
  1719.           the complete remote webarea to our namespace by the use
  1720.           of the <dfn>Proxy Throughput</dfn> feature (flag <code>[P]</code>):</p>
  1721.  
  1722. <example><pre>
  1723. ##
  1724. ##  vhost.map
  1725. ##
  1726. www.vhost1.dom:80  /path/to/docroot/vhost1
  1727. www.vhost2.dom:80  /path/to/docroot/vhost2
  1728.      :
  1729. www.vhostN.dom:80  /path/to/docroot/vhostN
  1730. </pre></example>
  1731.  
  1732. <example><pre>
  1733. ##
  1734. ##  httpd.conf
  1735. ##
  1736.     :
  1737. #   use the canonical hostname on redirects, etc.
  1738. UseCanonicalName on
  1739.  
  1740.     :
  1741. #   add the virtual host in front of the CLF-format
  1742. CustomLog  /path/to/access_log  "%{VHOST}e %h %l %u %t \"%r\" %>s %b"
  1743.     :
  1744.  
  1745. #   enable the rewriting engine in the main server
  1746. RewriteEngine on
  1747.  
  1748. #   define two maps: one for fixing the URL and one which defines
  1749. #   the available virtual hosts with their corresponding
  1750. #   DocumentRoot.
  1751. RewriteMap    lowercase    int:tolower
  1752. RewriteMap    vhost        txt:/path/to/vhost.map
  1753.  
  1754. #   Now do the actual virtual host mapping
  1755. #   via a huge and complicated single rule:
  1756. #
  1757. #   1. make sure we don't map for common locations
  1758. RewriteCond   %{REQUEST_URI}  !^/commonurl1/.*
  1759. RewriteCond   %{REQUEST_URI}  !^/commonurl2/.*
  1760.     :
  1761. RewriteCond   %{REQUEST_URI}  !^/commonurlN/.*
  1762. #
  1763. #   2. make sure we have a Host header, because
  1764. #      currently our approach only supports
  1765. #      virtual hosting through this header
  1766. RewriteCond   %{HTTP_HOST}  !^$
  1767. #
  1768. #   3. lowercase the hostname
  1769. RewriteCond   ${lowercase:%{HTTP_HOST}|NONE}  ^(.+)$
  1770. #
  1771. #   4. lookup this hostname in vhost.map and
  1772. #      remember it only when it is a path
  1773. #      (and not "NONE" from above)
  1774. RewriteCond   ${vhost:%1}  ^(/.*)$
  1775. #
  1776. #   5. finally we can map the URL to its docroot location
  1777. #      and remember the virtual host for logging puposes
  1778. RewriteRule   ^/(.*)$   %1/$1  [E=VHOST:${lowercase:%{HTTP_HOST}}]
  1779.     :
  1780. </pre></example>
  1781.         </dd>
  1782.       </dl>
  1783.  
  1784.     </section>
  1785.  
  1786.   </section>
  1787.  
  1788.   <section id="access">
  1789.  
  1790.     <title>Access Restriction</title>
  1791.  
  1792.     <section>
  1793.  
  1794.       <title>Blocking of Robots</title>
  1795.  
  1796.       <dl>
  1797.         <dt>Description:</dt>
  1798.  
  1799.         <dd>
  1800.           <p>How can we block a really annoying robot from
  1801.           retrieving pages of a specific webarea? A
  1802.           <code>/robots.txt</code> file containing entries of the
  1803.           "Robot Exclusion Protocol" is typically not enough to get
  1804.           rid of such a robot.</p>
  1805.         </dd>
  1806.  
  1807.         <dt>Solution:</dt>
  1808.  
  1809.         <dd>
  1810.           <p>We use a ruleset which forbids the URLs of the webarea
  1811.           <code>/~quux/foo/arc/</code> (perhaps a very deep
  1812.           directory indexed area where the robot traversal would
  1813.           create big server load). We have to make sure that we
  1814.           forbid access only to the particular robot, i.e. just
  1815.           forbidding the host where the robot runs is not enough.
  1816.           This would block users from this host, too. We accomplish
  1817.           this by also matching the User-Agent HTTP header
  1818.           information.</p>
  1819.  
  1820. <example><pre>
  1821. RewriteCond %{HTTP_USER_AGENT}   ^<strong>NameOfBadRobot</strong>.*
  1822. RewriteCond %{REMOTE_ADDR}       ^<strong>123\.45\.67\.[8-9]</strong>$
  1823. RewriteRule ^<strong>/~quux/foo/arc/</strong>.+   -   [<strong>F</strong>]
  1824. </pre></example>
  1825.         </dd>
  1826.       </dl>
  1827.  
  1828.     </section>
  1829.  
  1830.     <section>
  1831.  
  1832.       <title>Blocked Inline-Images</title>
  1833.  
  1834.       <dl>
  1835.         <dt>Description:</dt>
  1836.  
  1837.         <dd>
  1838.           <p>Assume we have under <code>http://www.quux-corp.de/~quux/</code>
  1839.           some pages with inlined GIF graphics. These graphics are
  1840.           nice, so others directly incorporate them via hyperlinks to
  1841.           their pages. We don't like this practice because it adds
  1842.           useless traffic to our server.</p>
  1843.         </dd>
  1844.  
  1845.         <dt>Solution:</dt>
  1846.  
  1847.         <dd>
  1848.           <p>While we cannot 100% protect the images from inclusion,
  1849.           we can at least restrict the cases where the browser
  1850.           sends a HTTP Referer header.</p>
  1851.  
  1852. <example><pre>
  1853. RewriteCond %{HTTP_REFERER} <strong>!^$</strong>
  1854. RewriteCond %{HTTP_REFERER} !^http://www.quux-corp.de/~quux/.*$ [NC]
  1855. RewriteRule <strong>.*\.gif$</strong>        -                                    [F]
  1856. </pre></example>
  1857.  
  1858. <example><pre>
  1859. RewriteCond %{HTTP_REFERER}         !^$
  1860. RewriteCond %{HTTP_REFERER}         !.*/foo-with-gif\.html$
  1861. RewriteRule <strong>^inlined-in-foo\.gif$</strong>   -                        [F]
  1862. </pre></example>
  1863.         </dd>
  1864.       </dl>
  1865.  
  1866.     </section>
  1867.  
  1868.     <section>
  1869.  
  1870.       <title>Host Deny</title>
  1871.  
  1872.       <dl>
  1873.         <dt>Description:</dt>
  1874.  
  1875.         <dd>
  1876.           <p>How can we forbid a list of externally configured hosts
  1877.           from using our server?</p>
  1878.         </dd>
  1879.  
  1880.         <dt>Solution:</dt>
  1881.  
  1882.         <dd>
  1883.           <p>For Apache >= 1.3b6:</p>
  1884.  
  1885. <example><pre>
  1886. RewriteEngine on
  1887. RewriteMap    hosts-deny  txt:/path/to/hosts.deny
  1888. RewriteCond   ${hosts-deny:%{REMOTE_HOST}|NOT-FOUND} !=NOT-FOUND [OR]
  1889. RewriteCond   ${hosts-deny:%{REMOTE_ADDR}|NOT-FOUND} !=NOT-FOUND
  1890. RewriteRule   ^/.*  -  [F]
  1891. </pre></example>
  1892.  
  1893.           <p>For Apache <= 1.3b6:</p>
  1894.  
  1895. <example><pre>
  1896. RewriteEngine on
  1897. RewriteMap    hosts-deny  txt:/path/to/hosts.deny
  1898. RewriteRule   ^/(.*)$ ${hosts-deny:%{REMOTE_HOST}|NOT-FOUND}/$1
  1899. RewriteRule   !^NOT-FOUND/.* - [F]
  1900. RewriteRule   ^NOT-FOUND/(.*)$ ${hosts-deny:%{REMOTE_ADDR}|NOT-FOUND}/$1
  1901. RewriteRule   !^NOT-FOUND/.* - [F]
  1902. RewriteRule   ^NOT-FOUND/(.*)$ /$1
  1903. </pre></example>
  1904.  
  1905. <example><pre>
  1906. ##
  1907. ##  hosts.deny
  1908. ##
  1909. ##  ATTENTION! This is a map, not a list, even when we treat it as such.
  1910. ##             mod_rewrite parses it for key/value pairs, so at least a
  1911. ##             dummy value "-" must be present for each entry.
  1912. ##
  1913.  
  1914. 193.102.180.41 -
  1915. bsdti1.sdm.de  -
  1916. 192.76.162.40  -
  1917. </pre></example>
  1918.         </dd>
  1919.       </dl>
  1920.  
  1921.     </section>
  1922.  
  1923.     <section>
  1924.  
  1925.       <title>Proxy Deny</title>
  1926.  
  1927.       <dl>
  1928.         <dt>Description:</dt>
  1929.  
  1930.         <dd>
  1931.           <p>How can we forbid a certain host or even a user of a
  1932.           special host from using the Apache proxy?</p>
  1933.         </dd>
  1934.  
  1935.         <dt>Solution:</dt>
  1936.  
  1937.         <dd>
  1938.           <p>We first have to make sure <module>mod_rewrite</module>
  1939.           is below(!) <module>mod_proxy</module> in the Configuration
  1940.           file when compiling the Apache webserver. This way it gets
  1941.           called <em>before</em> <module>mod_proxy</module>. Then we
  1942.           configure the following for a host-dependent deny...</p>
  1943.  
  1944. <example><pre>
  1945. RewriteCond %{REMOTE_HOST} <strong>^badhost\.mydomain\.com$</strong>
  1946. RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]
  1947. </pre></example>
  1948.  
  1949.           <p>...and this one for a user@host-dependent deny:</p>
  1950.  
  1951. <example><pre>
  1952. RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST}  <strong>^badguy@badhost\.mydomain\.com$</strong>
  1953. RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]
  1954. </pre></example>
  1955.         </dd>
  1956.       </dl>
  1957.  
  1958.     </section>
  1959.  
  1960.     <section>
  1961.  
  1962.       <title>Special Authentication Variant</title>
  1963.  
  1964.       <dl>
  1965.         <dt>Description:</dt>
  1966.  
  1967.         <dd>
  1968.           <p>Sometimes a very special authentication is needed, for
  1969.           instance a authentication which checks for a set of
  1970.           explicitly configured users. Only these should receive
  1971.           access and without explicit prompting (which would occur
  1972.           when using the Basic Auth via <module>mod_auth</module>).</p>
  1973.         </dd>
  1974.  
  1975.         <dt>Solution:</dt>
  1976.  
  1977.         <dd>
  1978.           <p>We use a list of rewrite conditions to exclude all except
  1979.           our friends:</p>
  1980.  
  1981. <example><pre>
  1982. RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend1@client1.quux-corp\.com$</strong>
  1983. RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend2</strong>@client2.quux-corp\.com$
  1984. RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend3</strong>@client3.quux-corp\.com$
  1985. RewriteRule ^/~quux/only-for-friends/      -                                 [F]
  1986. </pre></example>
  1987.         </dd>
  1988.       </dl>
  1989.  
  1990.     </section>
  1991.  
  1992.     <section>
  1993.  
  1994.       <title>Referer-based Deflector</title>
  1995.  
  1996.       <dl>
  1997.         <dt>Description:</dt>
  1998.  
  1999.         <dd>
  2000.           <p>How can we program a flexible URL Deflector which acts
  2001.           on the "Referer" HTTP header and can be configured with as
  2002.           many referring pages as we like?</p>
  2003.         </dd>
  2004.  
  2005.         <dt>Solution:</dt>
  2006.  
  2007.         <dd>
  2008.           <p>Use the following really tricky ruleset...</p>
  2009.  
  2010. <example><pre>
  2011. RewriteMap  deflector txt:/path/to/deflector.map
  2012.  
  2013. RewriteCond %{HTTP_REFERER} !=""
  2014. RewriteCond ${deflector:%{HTTP_REFERER}} ^-$
  2015. RewriteRule ^.* %{HTTP_REFERER} [R,L]
  2016.  
  2017. RewriteCond %{HTTP_REFERER} !=""
  2018. RewriteCond ${deflector:%{HTTP_REFERER}|NOT-FOUND} !=NOT-FOUND
  2019. RewriteRule ^.* ${deflector:%{HTTP_REFERER}} [R,L]
  2020. </pre></example>
  2021.  
  2022.           <p>... in conjunction with a corresponding rewrite
  2023.           map:</p>
  2024.  
  2025. <example><pre>
  2026. ##
  2027. ##  deflector.map
  2028. ##
  2029.  
  2030. http://www.badguys.com/bad/index.html    -
  2031. http://www.badguys.com/bad/index2.html   -
  2032. http://www.badguys.com/bad/index3.html   http://somewhere.com/
  2033. </pre></example>
  2034.  
  2035.           <p>This automatically redirects the request back to the
  2036.           referring page (when "<code>-</code>" is used as the value
  2037.           in the map) or to a specific URL (when an URL is specified
  2038.           in the map as the second argument).</p>
  2039.         </dd>
  2040.       </dl>
  2041.  
  2042.     </section>
  2043.  
  2044.   </section>
  2045.  
  2046.   <section id="other">
  2047.  
  2048.     <title>Other</title>
  2049.  
  2050.     <section>
  2051.  
  2052.       <title>External Rewriting Engine</title>
  2053.  
  2054.       <dl>
  2055.         <dt>Description:</dt>
  2056.  
  2057.         <dd>
  2058.           <p>A FAQ: How can we solve the FOO/BAR/QUUX/etc.
  2059.           problem? There seems no solution by the use of
  2060.           <module>mod_rewrite</module>...</p>
  2061.         </dd>
  2062.  
  2063.         <dt>Solution:</dt>
  2064.  
  2065.         <dd>
  2066.           <p>Use an external <directive module="mod_rewrite"
  2067.           >RewriteMap</directive>, i.e. a program which acts
  2068.           like a <directive module="mod_rewrite"
  2069.           >RewriteMap</directive>. It is run once on startup of Apache
  2070.           receives the requested URLs on <code>STDIN</code> and has
  2071.           to put the resulting (usually rewritten) URL on
  2072.           <code>STDOUT</code> (same order!).</p>
  2073.  
  2074. <example><pre>
  2075. RewriteEngine on
  2076. RewriteMap    quux-map       <strong>prg:</strong>/path/to/map.quux.pl
  2077. RewriteRule   ^/~quux/(.*)$  /~quux/<strong>${quux-map:$1}</strong>
  2078. </pre></example>
  2079.  
  2080. <example><pre>
  2081. #!/path/to/perl
  2082.  
  2083. #   disable buffered I/O which would lead
  2084. #   to deadloops for the Apache server
  2085. $| = 1;
  2086.  
  2087. #   read URLs one per line from stdin and
  2088. #   generate substitution URL on stdout
  2089. while (<>) {
  2090.     s|^foo/|bar/|;
  2091.     print $_;
  2092. }
  2093. </pre></example>
  2094.  
  2095.           <p>This is a demonstration-only example and just rewrites
  2096.           all URLs <code>/~quux/foo/...</code> to
  2097.           <code>/~quux/bar/...</code>. Actually you can program
  2098.           whatever you like. But notice that while such maps can be
  2099.           <strong>used</strong> also by an average user, only the
  2100.           system administrator can <strong>define</strong> it.</p>
  2101.         </dd>
  2102.       </dl>
  2103.  
  2104.     </section>
  2105.  
  2106.   </section>
  2107.  
  2108. </manualpage>
  2109.  
  2110.