Intro to Apache - ApacheCon 2005
Containers: - A <Location> handler is a way to map a URL to something that is not necessarily a file.
<Location /foo>
AddHandler handlername
</Location>
| | |
- Where
/foo is the actual URL. This means that you can make up any URL you want, with no regard to directory structure. - Of course, you can do that with
Alias also ...
|
|