This glossary defines some of the common terminology related to Apache in particular, and web serving in general. More information on each concept is provided in the links.
apxs
httpd
binary that can be loaded on-demand.INCLUDES
output filter processes documents forServer Side Includes.www
is a hostname,example.com
is a domain name, andwww.example.com
is a fully-qualified domain name.cgi-script
handler designates files to be processed asCGIs./usr/local/apache2/conf/httpd.conf
, but it may be moved using run-time or compile-time configuration.GET
,POST
, andPUT
.text/html
,image/gif
, andapplication/octet-stream
. In HTTP, the MIME-type is transmitted in theContent-Type
header.httpd
binary are calledstatic modules, while modules that are stored separately and can be optionally loaded at run-time are calleddynamic modules orDSOs. Modules that are included by default are calledbase modules. Many modules are available for Apache that are not distributed as part of the Apache HTTP Servertarball. These are referred to asthird-party modules./images/.*(jpg|gif)$
". In places where regular expressions are used to replace strings, the special variables $1 ... $9 contain backreferences to the grouped parts (in parentheses) of the matched expression. The special variable $0 contains a backreference to the whole matched expression. To write a literal dollar sign in a replacement string, it can be escaped with a backslash. Historically, the variable & could be used as alias for $0 in some places. This is no longer possible since version 2.3.6. Apache uses Perl Compatible Regular Expressions provided by thePCRE library. You can find more documentation about PCRE's regular expression syntax at that site, or atWikipedia.DirectoryIndex
,mod_autoindex
, andmod_include
.tar
utility. Apache distributions are stored in compressed tar archives or using pkzip.http
orhttps
, a hostname, and a path. A URL for this page might behttp://httpd.apache.org/docs/2.4/glossary.html
.Copyright 2025 The Apache Software Foundation.
Licensed under theApache License, Version 2.0.