|
AOLServer |
Apache |
Microsoft IIS |
Netscape iPlanet 6.0 |
Netscape iPlanet 4.x |
Netscape Enterprise Server 3.6
AOLServer becomes customizable through the use of Tcl modules. A Tcl module is used to create custom HTTP headers for a particular web site. The webmaster specifies a directory in which the Tcl module resides, and upon start up of the web server, the modules within that directory are initialized as well. The following directory is commonly used for user-created Tcl modules:
/servers/servername/modules/tcl
To create a custom header, create a file within the Tcl module directory. The file extension should be .tcl. For this example, the custom header is named Author, and the header's value is "Internet Services." Within the Tcl file, include the following line:
ns_set put [ns_conn outputheaders] "AUTHOR" "Internet Services"
For more information on AOLServer, go to http://www.aolserver.com/. For more information on AOLServer and Tcl, go to http://www.aolserver.com/docs/devel/tcl/.
|