aliases.ini, stores aliases used in translating the requested URI to
a physical file or to a servlet defined in servlets.ini.
Syntax
alias = type:resource
|
alias
|
the URI or file extension that the request must match.
|
|
type
|
file, filter or servlet.
If not specified, file is the default type.
|
|
resource
|
the path to an existing physical file
or the name of a servlet defined in servlets.ini
For physical files, $wwwroot will be replaced by the base directory of
requested virtual host.
When specifying a path each \ must be entered twice.
|
Notes
File is used when translating a URI to a specific physical file.
A Filter is a Servlet that is used when a reference is made to a
resource which ends with a specific file extension.
A Servlet is a Java Class that is invoked when a request matches a
specific URI.
Changes made to configuration files will not be used until the Servertec
Internet Server is restarted.
Example
/ = servlet:FileServlet
.shtml = filter:SSIncludeServlet
/tests = file:d:\\tests
|