Practical mod_perl / HTML Book /



previous page: B.8.2. Apache::MIMEMapper—Associates File Extensions with PerlHandlers
  
page up: HTML Version of the book
  
next page: B.9.2. Apache::ProxyPass—implement ProxyPass in Perl

B.9.1. Apache::AddHostPath—Adds Some or All of the Hostname and Port to the URI


This module transforms the requested URI based on the hostname and port number from the HTTP request header. It allows you to manage an arbitrary number of domains and subdomains all pointing to the same document root but for which you want a combination of shared and distinct files.

Essentially the module implements Apache's URI-translation phase by attempting to use some or all of the URL hostname and port number as the base of the URI. It simply does file and directory existence tests on a series of URIs (from most-specific to least-specific) and sets the URI to the most specific match.

For example, if the request is:

URL: http://www.example.org:8080/index.html
URI: /index.html

Apache::AddHostPath would go through the following list of possible paths and set the new URI based on the first match that passes a -f or -d existence test:

$docRoot/org/example/www/8080/index.html
$docRoot/org/example/www/index.html
$docRoot/org/example/index.html
$docRoot/org/index.html
$docRoot/index.html

Available from CPAN. See the module manpage for more information.

 

Continue to:

  • prev: B.8.2. Apache::MIMEMapper—Associates File Extensions with PerlHandlers
  • Table of Contents
  • next: B.9.2. Apache::ProxyPass—implement ProxyPass in Perl







TOP
previous page: B.8.2. Apache::MIMEMapper—Associates File Extensions with PerlHandlers
  
page up: HTML Version of the book
  
next page: B.9.2. Apache::ProxyPass—implement ProxyPass in Perl


Menu

  • HTML Book
  • PDF Book
  • Download Code
  • Table of Contents
  • Errata
  • mod_perl2 User's Guide
  • Sitemap

Search


Add to Google




Creative Commons License


Written by
Eric Cholet (Logilune) and
Stas Bekman (StasoSphere & Free Books).


[ Privacy Policy | Terms of Use | About Us | Search ]

© 2007 StasoSphere.com