URL Mapping - ApacheCon 2005
Location
  • Not tied to file space

  • Usually maps to a handler or script

    
     <Location /status>
         SetHandler server-status
     </Location>
    
      

  • This example maps the URL /status to the server-status handler provided by mod_status

    
     <Location /example>
        SetHandler perl-script
        PerlHandler Apache::Example
     </Location>
    
      

  • This example maps the url /example to a mod_perl handler defined in the Perl module Apache::Example.

Index
Back to URL Mapping
Forward to Alias

ApacheCon 2005 : URL Mapping - Slide #4 of 45