Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact us Request to publish your help manuals Request to remove your help manuals

Introduction
 » HSLAB HTTP Monitor
 » What's New?
 » System Requirements
Before You Begin
 » How it Works?
 » Why this Software?
Working with Program
 » Main Window
 » Server Details
 » Table View
 » Diagram View
 » Monitor Options
 » Apache Configuration Wizard
 » Server Snapshots
 » Server Profiles
 » Detection Threshold & Alarms
Advanced Filtering Options
 » Advanced Filtering Options
 » Regular Expression Options
 » Simple Regexp Syntax
 » Regular Expression Syntax
 » Match Options
Related Apache Documents
 » Apache Core Features
 » Module mod_status
 » Access Control by URL
 » Apache's Handler Use
 » Apache Performance Notes
Registration & Support Details
 » Distribution of Evaluation Version
 » Registration
 » Enter Registration Code
 » Company Info
 » Support
 » Report Bug
 

Access Control by URL

The <Location> Directive
Syntax: <Location URL prefix>
Context: server config, virtual host
Status: core
The <Location> directive provides for access control by URL. It is comparable to the <Directory> directive, and should be matched with a </Location> directive. Directives that apply to the URL given should be listen within. <Location> sections are processed in the order they appear in the configuration file, after the <Directory> sections and .htaccess files are read.

Note that, due to the way HTTP functions, URL prefix should, save for proxy requests, be of the form /path/, and should not include the http://servername. It doesn't necessarily have to protect a directory (it can be an individual file, or a number of files), and can include wild-cards. In a wild-card string, `?' matches any single character, and `*' matches any sequences of characters.

data recovery application deleted picture recovery partition files restore
usb drive files recovery software flash drive file recovery key drive data undelete
unerase digital pictures photo recovery digital camera professional data recovery

This functionality is especially useful when combined with the SetHandler directive. For example, to enable status requests, but allow them only from browsers at foo.com, you might use:

<Location /status>
SetHandler server-status
order deny,allow
deny from all
allow from .foo.com
</Location>

Home | Contact us | Request to publish your help manuals | Request to remove your help manuals