Sophie

Sophie

distrib > Mandriva > 2010.1 > i586 > media > contrib-updates > by-pkgid > 02e45b2cd6a4a47c88f15dd2f64cf46c > files > 887

cherokee-1.0.8-1mdv2010.1.i586.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Language" content="en-us" />
    <meta name="ROBOTS" content="ALL" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="MSSmartTagsPreventParsing" content="true" />
    <meta name="Keywords" content="cherokee web server httpd http" />
    <meta name="Description" content="Cherokee is a flexible, very fast, lightweight Web server. It is implemented entirely in C, and has no dependencies beyond a standard C library. It is embeddable and extensible with plug-ins. It supports on-the-fly configuration by reading files or strings, TLS/SSL (via GNUTLS or OpenSSL), virtual hosts, authentication, cache friendly features, PHP, custom error management, and much more." />
    <link href="media/css/cherokee_doc.css" rel="stylesheet" type="text/css" media="all" />
  </head>
<body>
<h2 id="_a_href_index_html_index_a_8594_a_href_modules_html_modules_a_8594_a_href_modules_handlers_html_handlers_a"><a href="index.html">Index</a> &#8594; <a href="modules.html">Modules</a> &#8594; <a href="modules_handlers.html">Handlers</a></h2>
<div class="sectionbody">
</div>
<h2 id="_handler_redirection">Handler: Redirection</h2>
<div class="sectionbody">
<div class="paragraph"><p>The main idea of a redirection is telling the web client to go to
another URL when the requested URL matches a rule. It could happen
that this is not precisely what you are looking for. Check the
<a href="modules_handlers_proxy.html">reverse proxy</a> handler if you are
looking for more complex layer 7 operations.  However, for URL
redirections this handler is the place to go. A very common scenario
would be rewriting URLS.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
Lets suppose you have URLs like
</dt>
<dd>
<div class="listingblock">
<div class="content">
<pre><tt>    http://example.com/inst/photogallery/viewphoto?photoid=1235
    http://example.com/inst/photogallery/viewcomments?photoid=1235
    http://example.com/inst/photogallery/admin?photoid=1235&amp;method=delete</tt></pre>
</div></div>
</dd>
<dt class="hdlist1">
You probably would prefer URLs like
</dt>
<dd>
<div class="listingblock">
<div class="content">
<pre><tt>    http://example.com/photo/1235
    http://example.com/photo/1235/cmts
    http://example.com/photo/1235/delete</tt></pre>
</div></div>
</dd>
</dl></div>
<h3 id="parameters">Parameters</h3><div style="clear:left"></div>
<div class="paragraph"><p>This directive uses PCRE (Perl Compatible Regular Expressions) to make
the substitution.</p></div>
<div class="ulist"><ul>
<li>
<p>
Type: [External | Internal]
</p>
<div class="ulist"><ul>
<li>
<p>
<strong>Internal</strong>:
    The redirection will happen internally, hence the internal URL in
    which the address is translated will be invisible for the client.
</p>
</li>
<li>
<p>
<strong>External</strong>:
    It works in the same way as the previous one, but in this case, it
    will redirect the connection to the new resource.
</p>
</li>
</ul></div>
</li>
<li>
<p>
<strong>Regular Expression</strong> and <strong>Substitution</strong> are the matching request and
   the intended target of such petition. Getting into details of
   regular expressions is out of the scope of this document. Besides,
   there are many <a href="http://perldoc.perl.org/perlre.html">Perl
   regular expressions</a> references.
</p>
</li>
</ul></div>
<h3 id="vhosts">Virtual hosts and redirections</h3><div style="clear:left"></div>
<div class="paragraph"><p>The internal redirections, using the <tt>internal</tt> keyword, are limited to
work in the same virtual host. All the internal redirections will be
processed in the original virtual host, which makes a lot of sense in
terms of security.</p></div>
<div class="paragraph"><p>In case you do need to redirect a resource to another virtual host
and/or domain, you will have to use an explicit redirection using the
<tt>external</tt> keyword.</p></div>
<h3 id="rule_type">The influence of the rule type</h3><div style="clear:left"></div>
<div class="paragraph"><p>Any rule type can be used with the redirection handler: Directory,
Extensions, Regular Expression, etc. Only the case where the type is
<strong>Regular Expression</strong> will require some more extra information.
Because of Cherokee&#8217;s design, modularity and inheritance is heavily
used throughout the code base. This one is a special case because the
regex entry of the redirection handler can be empty whenever the
matching rule used is a regular expression (because it is inherited by
it).</p></div>
<div class="paragraph"><p>The logic behind this is that you can set up a regular expression to
match the rule, but once you&#8217;re in the redirection handler you could
or could not be needing another matching to be performed. If not, the
original one (the one from the rule) will be enough. If you do, you
can specify a completely different expression to be matched. For
instance, you could match the rule taking just the beginning part of
the request as meaningful, and once you are into the handler you might
want to consider just the end of it before making the substitution.</p></div>
<h3 id="examples">Examples</h3><div style="clear:left"></div>
<div class="paragraph"><p>This example will perform internal redirections:</p></div>
<div class="tableblock">
<table rules="all"
width="100%"
frame="border"
cellspacing="0" cellpadding="4">
<col width="30%" />
<col width="70%" />
<thead>
<tr>
<th align="left" valign="top">Regular Expression </th>
<th align="left" valign="top">Substitution</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" valign="top"><p class="table"><em>/(\d+)$</em></p></td>
<td align="left" valign="top"><p class="table"><a href="http://example.com/inst/photogallery/viewphoto?photoid=$1">http://example.com/inst/photogallery/viewphoto?photoid=$1</a></p></td>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><em>/(\d+)/cmts</em></p></td>
<td align="left" valign="top"><p class="table"><a href="http://example.com/viewcomments?photoid=$1">http://example.com/viewcomments?photoid=$1</a></p></td>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><em>/(\d+)/delete</em></p></td>
<td align="left" valign="top"><p class="table"><a href="http://example.com/inst/photogallery/admin?photoid=$1&amp;method=delete">http://example.com/inst/photogallery/admin?photoid=$1&amp;method=delete</a></p></td>
</tr>
</tbody>
</table>
</div>
<div class="paragraph"><p>Which would translate into the following redirections for the listed
matching requests:</p></div>
<div class="tableblock">
<table rules="all"
width="100%"
frame="border"
cellspacing="0" cellpadding="4">
<col width="30%" />
<col width="70%" />
<thead>
<tr>
<th align="left" valign="top">Request               </th>
<th align="left" valign="top">Internal translation</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left" valign="top"><p class="table"><em>/photo/123</em></p></td>
<td align="left" valign="top"><p class="table"><a href="http://example.com/inst/photogallery/viewphoto?photoid=123">http://example.com/inst/photogallery/viewphoto?photoid=123</a></p></td>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><em>/photo/213/cmts</em></p></td>
<td align="left" valign="top"><p class="table"><a href="http://example.com/viewcomments?photoid=213">http://example.com/viewcomments?photoid=213</a></p></td>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><em>/photo/501/delete</em></p></td>
<td align="left" valign="top"><p class="table"><a href="http://example.com/inst/photogallery/admin?photoid=501&amp;method=delete">http://example.com/inst/photogallery/admin?photoid=501&amp;method=delete</a></p></td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="footer">
<div id="footer-text">
</div>
</div>
</body>
</html>