Summary
The index of a directory can come from one of two sources:
- A file located in that directory, typically called
index.html
. TheDirectoryIndex
directive sets the name of the file or files to be used. This is controlled bymod_dir
. - Otherwise, a listing generated by the server. The other directives control the format of this listing. The
AddIcon
,AddIconByEncoding
andAddIconByType
are used to set a list of icons to display for various file types; for each file listed, the first icon listed that matches the file is displayed. These are controlled bymod_autoindex
.
The two functions are separated so that you can completely remove (or replace) automatic index generation should you want to.
Automatic index generation is enabled with using Options +Indexes
. See the Options
directive for more details.
If the FancyIndexing
option is given with the IndexOptions
directive, the column headers are links that control the order of the display. If you select a header link, the listing will be regenerated, sorted by the values in that column. Selecting the same header repeatedly toggles between ascending and descending order. These column header links are suppressed with the IndexOptions
directive's SuppressColumnSorting
option.
Note that when the display is sorted by "Size", it's the actual size of the files that's used, not the displayed value - so a 1010-byte file will always be displayed before a 1011-byte file (if in ascending order) even though they both are shown as "1K".
Topics
Directives
Autoindex Request Query Arguments
Various query string arguments are available to give the client some control over the ordering of the directory listing, as well as what files are listed. If you do not wish to give the client this control, the IndexOptions IgnoreClient
option disables that functionality.
The column sorting headers themselves are self-referencing hyperlinks that add the sort query options shown below. Any option below may be added to any request for the directory resource.
-
C=N
sorts the directory by file name -
C=M
sorts the directory by last-modified date, then file name -
C=S
sorts the directory by size, then file name -
C=D
sorts the directory by description, then file name -
O=A
sorts the listing in Ascending Order -
O=D
sorts the listing in Descending Order -
F=0
formats the listing as a simple list (not FancyIndexed) -
F=1
formats the listing as a FancyIndexed list -
F=2
formats the listing as an HTMLTable FancyIndexed list -
V=0
disables version sorting -
V=1
enables version sorting -
P=pattern
lists only files matching the given pattern
Note that the 'P'attern query argument is tested after the usual IndexIgnore
directives are processed, and all file names are still subjected to the same criteria as any other autoindex listing. The Query Arguments parser in mod_autoindex
will stop abruptly when an unrecognized option is encountered. The Query Arguments must be well formed, according to the table above.
The simple example below, which can be clipped and saved in a header.html file, illustrates these query options. Note that the unknown "X" argument, for the submit button, is listed last to assure the arguments are all parsed before mod_autoindex encounters the X=Go input.
<form action="" method="get">
Show me a <select name="F">
<option value="0"> Plain list</option>
<option value="1" selected="selected"> Fancy list</option>
<option value="2"> Table list</option>
</select>
Sorted by <select name="C">
<option value="N" selected="selected"> Name</option>
<option value="M"> Date Modified</option>
<option value="S"> Size</option>
<option value="D"> Description</option>
</select>
<select name="O">
<option value="A" selected="selected"> Ascending</option>
<option value="D"> Descending</option>
</select>
<select name="V">
<option value="0" selected="selected"> in Normal order</option>
<option value="1"> in Version order</option>
</select>
Matching <input type="text" name="P" value="*" />
<input type="submit" name="X" value="Go" />
</form>
AddAlt Directive
Alternate text to display for a file, instead of an icon selected by filename |
AddAlt string file [file] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
AddAlt
provides the alternate text to display for a file, instead of an icon, for FancyIndexing
. File is a file extension, partial filename, wild-card expression or full filename for files to describe. If String contains any whitespace, you have to enclose it in quotes ("
or '
). This alternate text is displayed if the client is image-incapable, has image loading disabled, or fails to retrieve the icon.
AddAlt"PDF file"*.pdf AddAltCompressed*.gz *.zip *.Z
AddAltByEncoding Directive
Alternate text to display for a file instead of an icon selected by MIME-encoding |
AddAltByEncoding string MIME-encoding [MIME-encoding] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
AddAltByEncoding
provides the alternate text to display for a file, instead of an icon, for FancyIndexing
. MIME-encoding is a valid content-encoding, such as x-compress
. If String contains any whitespace, you have to enclose it in quotes ("
or '
). This alternate text is displayed if the client is image-incapable, has image loading disabled, or fails to retrieve the icon.
AddAltByEncoding gzip x-gzip
AddAltByType Directive
Alternate text to display for a file, instead of an icon selected by MIME content-type |
AddAltByType string MIME-type [MIME-type] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
AddAltByType
sets the alternate text to display for a file, instead of an icon, for FancyIndexing
. MIME-type is a valid content-type, such as text/html
. If String contains any whitespace, you have to enclose it in quotes ("
or '
). This alternate text is displayed if the client is image-incapable, has image loading disabled, or fails to retrieve the icon.
AddAltByType'plain text' text/plain
AddDescription Directive
Description to display for a file |
AddDescription string file [file] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
This sets the description to display for a file, for FancyIndexing
. File is a file extension, partial filename, wild-card expression or full filename for files to describe. String is enclosed in double quotes ("
).
AddDescription"The planet Mars" mars.gif AddDescription"My friend Marshall" friends/mars.gif
The typical, default description field is 23 bytes wide. 6 more bytes are added by the IndexOptions SuppressIcon
option, 7 bytes are added by the IndexOptions SuppressSize
option, and 19 bytes are added by the IndexOptions SuppressLastModified
option. Therefore, the widest default the description column is ever assigned is 55 bytes.
Since the File argument may be a partial file name, please remember that a too-short partial filename may match unintended files. For example, le.html
will match the file le.html
but will also match the file example.html
. In the event that there may be ambiguity, use as complete a filename as you can, but keep in mind that the first match encountered will be used, and order your list of AddDescription
directives accordingly.
See the DescriptionWidth IndexOptions
keyword for details on overriding the size of this column, or allowing descriptions of unlimited length.
Caution
Descriptive text defined with AddDescription
may contain HTML markup, such as tags and character entities. If the width of the description column should happen to truncate a tagged element (such as cutting off the end of a bolded phrase), the results may affect the rest of the directory listing.
Arguments with path information
Absolute paths are not currently supported and do not match anything at runtime. Arguments with relative path information, which would normally only be used in htaccess context, are implicitly prefixed with '*/' to avoid matching partial directory names.
AddIcon Directive
Icon to display for a file selected by name |
AddIcon icon name [name] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
This sets the icon to display next to a file ending in name for FancyIndexing
. Icon is either a (%-escaped) relative URL to the icon, a fully qualified remote URL, or of the format (alttext,url)
where alttext is the text tag given for an icon for non-graphical browsers.
Name is either ^^DIRECTORY^^
for directories, ^^BLANKICON^^
for blank lines (to format the list correctly), a file extension, a wildcard expression, a partial filename or a complete filename.
^^BLANKICON^^
is only used for formatting, and so is unnecessary if you're using IndexOptions HTMLTable
.
#ExamplesAddIcon(IMG,/icons/image.png).gif .jpg .png AddIcon/icons/dir.png ^^DIRECTORY^^AddIcon/icons/backup.png *~
AddIconByType
should be used in preference to AddIcon
, when possible.
AddIconByEncoding Directive
Icon to display next to files selected by MIME content-encoding |
AddIconByEncoding icon MIME-encoding [MIME-encoding] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
This sets the icon to display next to files with FancyIndexing
. Icon is either a (%-escaped) relative URL to the icon, a fully qualified remote URL, or of the format (alttext,url)
where alttext is the text tag given for an icon for non-graphical browsers.
MIME-encoding is a valid content-encoding, such as x-compress
.
AddIconByEncoding/icons/compress.png x-compress
AddIconByType Directive
Icon to display next to files selected by MIME content-type |
AddIconByType icon MIME-type [MIME-type] ... |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
This sets the icon to display next to files of type MIME-type for FancyIndexing
. Icon is either a (%-escaped) relative URL to the icon, a fully qualified remote URL, or of the format (alttext,url)
where alttext is the text tag given for an icon for non-graphical browsers.
MIME-type is a wildcard expression matching required the mime types.
AddIconByType(IMG,/icons/image.png) image/*
DefaultIcon Directive
Icon to display for files when no specific icon is configured |
DefaultIcon url-path |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The DefaultIcon
directive sets the icon to display for files when no specific icon is known, for FancyIndexing
. Url-path is a (%-escaped) relative URL to the icon, or a fully qualified remote URL.
DefaultIcon/icon/unknown.png
HeaderName Directive
Name of the file that will be inserted at the top of the index listing |
HeaderName filename |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The HeaderName
directive sets the name of the file that will be inserted at the top of the index listing. Filename is the name of the file to include.
HeaderName HEADER.html
Both HeaderName and ReadmeName
now treat Filename as a URI path relative to the one used to access the directory being indexed. If Filename begins with a slash, it will be taken to be relative to the DocumentRoot
.
HeaderName/include/HEADER.html
Filename must resolve to a document with a major content type of text/*
(e.g., text/html
, text/plain
, etc.). This means that filename may refer to a CGI script if the script's actual file type (as opposed to its output) is marked as text/html
such as with a directive like:
AddType text/html .cgi
Content negotiation will be performed if Options
MultiViews
is in effect. If filename resolves to a static text/html
document (not a CGI script) and either one of the options
Includes
or IncludesNOEXEC
is enabled, the file will be processed for server-side includes (see the mod_include
documentation).
If the file specified by HeaderName
contains the beginnings of an HTML document (<html>, <head>, etc.) then you will probably want to set IndexOptions +SuppressHTMLPreamble
, so that these tags are not repeated.
See also
IndexHeadInsert Directive
Inserts text in the HEAD section of an index page. |
IndexHeadInsert "markup ..." |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The IndexHeadInsert
directive specifies a string to insert in the <head> section of the HTML generated for the index page.
IndexHeadInsert"<link rel=\"sitemap\" href=\"/sitemap.html\">"
IndexIgnore Directive
Adds to the list of files to hide when listing a directory |
IndexIgnore file [file] ... |
IndexIgnore "." |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The IndexIgnore
directive adds to the list of files to hide when listing a directory. File is a shell-style wildcard expression or full filename. Multiple IndexIgnore directives add to the list, rather than replacing the list of ignored files. By default, the list contains .
(the current directory).
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
Regular Expressions
This directive does not currently work in configuration sections that have regular expression arguments, such as <DirectoryMatch>
IndexIgnoreReset Directive
Empties the list of files to hide when listing a directory |
IndexIgnoreReset ON|OFF |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
2.3.10 and later |
The IndexIgnoreReset
directive removes any files ignored by IndexIgnore
otherwise inherited from other configuration sections.
<Directory"/var/www">IndexIgnore *.bak .??* *~ *# HEADER* README* RCS CVS *,v *,t </Directory><Directory"/var/www/backups">IndexIgnoreReset ON IndexIgnore .??* *# HEADER* README* RCS CVS *,v *,t </Directory>
Review the default configuration for a list of patterns that you might want to explicitly ignore after using this directive.
IndexOptions Directive
Various configuration settings for directory indexing |
IndexOptions [+|-]option [[+|-]option] ... |
By default, no options are enabled. |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The IndexOptions
directive specifies the behavior of the directory indexing. Option can be one of
IndexOptions HTMLTable
is in effect and an IndexStyleSheet
is defined. Rather than the standard even
and odd
classes that would otherwise be applied to each row of the table, a class of even-ALT
or odd-ALT
where ALT is either the standard alt text associated with the file style (eg. snd, txt, img, etc) or the alt text defined by one of the various AddAlt*
directives.Charset
keyword allows you to specify the character set of the generated page. The default is UTF-8
on Windows and Mac OS X, and ISO-8859-1
elsewhere. (It depends on whether the underlying file system uses Unicode filenames or not.)
IndexOptionsCharset=UTF-8
DescriptionWidth
keyword allows you to specify the width of the description column in characters.-DescriptionWidth
(or unset) allows mod_autoindex
to calculate the best width.DescriptionWidth=n
fixes the column width to n bytes wide.DescriptionWidth=*
grows the column to the width necessary to accommodate the longest description string. See the section on AddDescription
for dangers inherent in truncating descriptions.
FoldersFirst
is enabled, subdirectory Zed
will be listed before subdirectory Beta
, which will be listed before normal files Gamma
and Alpha
. This option only has an effect if FancyIndexing
is also enabled.
FancyIndexing
constructs a simple table for the fancy directory listing. It is necessary for utf-8 enabled platforms or if file names or description text will alternate between left-to-right and right-to-left reading order.IconWidth
, will cause the server to include height
and width
attributes in the img
tag for the file icon. This allows browser to precalculate the page layout without having to wait until all the images have been loaded. If no value is given for the option, it defaults to the standard height of the icons supplied with the Apache httpd software. This option only has an effect if FancyIndexing
is also enabled.
IconHeight
, will cause the server to include height
and width
attributes in the img
tag for the file icon. This allows browser to precalculate the page layout without having to wait until all the images have been loaded. If no value is given for the option, it defaults to the standard width of the icons supplied with the Apache httpd software.IgnoreCase
is enabled, file Zeta will be listed after file alfa (Note: file GAMMA will always be listed before file gamma).mod_autoindex
to ignore all query variables from the client, including sort order (implies SuppressColumnSorting
.)NameWidth
keyword allows you to specify the width of the filename column in bytes.-NameWidth
(or unset) allows mod_autoindex
to calculate the best width, but only up to 20 bytes wide.NameWidth=n
fixes the column width to n bytes wide.NameWidth=*
grows the column to the necessary width.AddDescription
then httpd will read the document for the value of the title
element. This is CPU and disk intensive.HTTP_UNAUTHORIZED
or HTTP_FORBIDDEN
IndexOptions IgnoreClient
.AddDescription
for information about setting the file description. See also the DescriptionWidth
index option to limit the size of the description column. This option only has an effect if FancyIndexing
is also enabled.
HeaderName
directive, the module usually includes the contents of the file after a standard HTML preamble (<html>
, <head>
, et cetera). The SuppressHTMLPreamble
option disables this behaviour, causing the module to start the display with the header file contents. The header file must contain appropriate HTML instructions in this case. If there is no header file, the preamble is generated as usual. If you also specify a ReadmeName
, and if that file exists, The closing </body></html> tags are also ommitted from the output, under the assumption that you'll likely put those closing tags in that file.SuppressIcon
and SuppressRules
yields proper HTML 3.2 output, which by the final specification prohibits img
and hr
elements from the pre
block (used to format FancyIndexed listings.)FancyIndexing
is also enabled.
hr
elements) in directory listings. Combining both SuppressIcon
and SuppressRules
yields proper HTML 3.2 output, which by the final specification prohibits img
and hr
elements from the pre
block (used to format FancyIndexed listings.) This option only has an effect if FancyIndexing
is also enabled.
FancyIndexing
is also enabled.
Last-Modified
and ETag
values for the listed directory in the HTTP header. It is only valid if the operating system and file system return appropriate stat() results. Some Unix systems do so, as do OS2's JFS and Win32's NTFS volumes. OS2 and Win32 FAT volumes, for example, do not. Once this feature is enabled, the client or proxy can track changes to the list of files when they perform a HEAD
request. Note some operating systems correctly track new and removed files, but do not track changes for sizes or dates of the files within the directory. Changes to the size or date stamp of an existing file will not update the Last-Modified
header on all Unix platforms. If this is a concern, leave this option disabled.Type
keyword allows you to specify the MIME content-type of the generated page. The default is text/html.
IndexOptionsType=text/plain
VersionSort
keyword causes files containing version numbers to sort in a natural way. Strings are sorted as usual, except that substrings of digits in the name and description are compared according to their numeric value.
Example:
foo-1.7
foo-1.7.2
foo-1.7.12
foo-1.8.2
foo-1.8.2a
foo-1.12
If the number starts with a zero, then it is considered to be a fraction:
foo-1.001
foo-1.002
foo-1.030
foo-1.04
XHTML
keyword forces mod_autoindex
to emit XHTML 1.0 code instead of HTML 3.2. This option only has an effect if FancyIndexing
is also enabled.
Be aware of how multiple IndexOptions
are handled.
- Multiple
IndexOptions
directives for a single directory are now merged together. The result of:<Directory"/foo">IndexOptionsHTMLTableIndexOptionsSuppressColumnsorting</Directory>
will be the equivalent of
IndexOptionsHTMLTableSuppressColumnsorting
- The addition of the incremental syntax (i.e., prefixing keywords with
+
or-
).
Whenever a '+' or '-' prefixed keyword is encountered, it is applied to the current IndexOptions
settings (which may have been inherited from an upper-level directory). However, whenever an unprefixed keyword is processed, it clears all inherited options and any incremental settings encountered so far. Consider the following example:
IndexOptions+ScanHTMLTitles-IconsAreLinksFancyIndexing IndexOptions+SuppressSize
The net effect is equivalent to IndexOptions FancyIndexing +SuppressSize
, because the unprefixed FancyIndexing
discarded the incremental keywords before it, but allowed them to start accumulating again afterward.
To unconditionally set the IndexOptions
for a particular directory, clearing the inherited settings, specify keywords without any +
or -
prefixes.
IndexOrderDefault Directive
Sets the default ordering of the directory index |
IndexOrderDefault Ascending|Descending Name|Date|Size|Description |
IndexOrderDefault Ascending Name |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The IndexOrderDefault
directive is used in combination with the FancyIndexing
index option. By default, fancyindexed directory listings are displayed in ascending order by filename; the IndexOrderDefault
allows you to change this initial display order.
IndexOrderDefault
takes two arguments. The first must be either Ascending
or Descending
, indicating the direction of the sort. The second argument must be one of the keywords Name
, Date
, Size
, or Description
, and identifies the primary key. The secondary key is always the ascending filename.
You can, if desired, prevent the client from reordering the list by also adding the SuppressColumnSorting
index option to remove the sort link from the top of the column, along with the IgnoreClient
index option to prevent them from manually adding sort options to the query string in order to override your ordering preferences.
IndexStyleSheet Directive
Adds a CSS stylesheet to the directory index |
IndexStyleSheet url-path |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The IndexStyleSheet
directive sets the name of the file that will be used as the CSS for the index listing.
IndexStyleSheet"/css/style.css"
Using this directive in conjunction with IndexOptions HTMLTable
adds a number of CSS classes to the resulting HTML. The entire table is given a CSS id of indexlist
and the following classes are associated with the various parts of the listing:
tr.indexhead | Header row of listing |
th.indexcolicon and td.indexcolicon | Icon column |
th.indexcolname and td.indexcolname | File name column |
th.indexcollastmod and td.indexcollastmod | Last modified column |
th.indexcolsize and td.indexcolsize | File size column |
th.indexcoldesc and td.indexcoldesc | Description column |
tr.breakrow | Horizontal rule at the bottom of the table |
tr.odd and tr.even | Alternating even and odd rows |
ReadmeName Directive
Name of the file that will be inserted at the end of the index listing |
ReadmeName filename |
server config, virtual host, directory, .htaccess |
Indexes |
Base |
mod_autoindex |
The ReadmeName
directive sets the name of the file that will be appended to the end of the index listing. Filename is the name of the file to include, and is taken to be relative to the location being indexed. If Filename begins with a slash, as in example 2, it will be taken to be relative to the DocumentRoot
.
# Example 1ReadmeName FOOTER.html
# Example 2ReadmeName/include/FOOTER.html
See also HeaderName
, where this behavior is described in greater detail.
转载自:http://httpd.apache.org/docs/current/mod/mod_autoindex.html#indexoptions
相关推荐
因此,对于安全性的考虑,我们需要配置Apache来禁止显示文件列表。 要禁止Apache显示目录列表,你需要编辑Apache的主要配置文件,通常命名为`httpd.conf`或`apache2.conf`,具体位置取决于你的操作系统和安装方式。...
1. AccessFileName:定义了Apache服务器查找特定目录访问控制文件的名称,默认为`.htaccess`。这个文件用于设置特定目录的权限和行为。 2. BindAddress:设置服务器监听的IP地址。默认值`*`表示监听所有可用的IP...
Apache服务器的主要配置文件位于`/etc/httpd/conf/httpd.conf`,这是所有配置指令的核心。在修改这个文件之前,最好先备份,以防意外情况发生。备份完成后,使用文本编辑器(如`vi`、`nano`或`gedit`)打开配置文件...
当用户访问一个目录时,Apache 服务器将显示该目录下的文件列表或默认页面。 可以使用 DirectoryIndex 指令来指定默认页面,例如: ``` DirectoryIndex index.html ``` 这将使 Apache 服务器在访问目录时显示 index...
在这个压缩包中,你将找到所有必要的文件和指南来帮助你安装并配置Apache服务器,以便它可以作为图片服务器运行。 **一、Apache HTTP Server简介** Apache HTTP Server(简称Apache)是一个开源的Web服务器软件,...
`httpd-2.2.20.tar.gz`是一个源码包,包含了Apache服务器的源代码,版本号为2.2.20,这是在Linux系统中部署Apache服务器的一种常见方式。 Apache服务器的强大之处在于其灵活性和可扩展性。它支持多种编程语言和模块...
#### 一、Apache服务器简介 Apache是一款广泛使用的Web服务器软件,由Apache软件基金会维护。它支持多种操作系统,包括Windows、Linux等,并且开源免费。Apache以其稳定性、安全性以及丰富的功能特性而受到全球用户...
Apache服务器是世界上最流行的Web服务器软件之一,被广泛用于托管各种网站和应用程序。它以其开源、稳定、高效和可扩展性而著称。本教程将详细讲解如何在Windows和Linux操作系统上安装Apache服务器,并解决Vue项目在...
1. Apache服务器配置文件:Apache的主要配置文件为httpd.conf,位于/etc/httpd/conf/目录下。通过编辑该文件,可以进行Apache的详细配置,包括虚拟主机、安全设置等。 2. 配置Web站点主目录:通过DocumentRoot指令...
在这个目录下,你可以找到Apache服务器的可执行文件、核心模块动态链接库以及readme文件等。这些文件包含了服务器运行所需的基本组件。 2. **bin**:这个目录存放了一些命令行工具,例如`htpasswd`,它用于创建和...
本文将详细介绍如何配置Apache服务器,包括发布网站、解决编码问题、实现认证授权以及设置虚拟主机。 一、发布简单网站 1. 默认发布目录:Apache服务器默认的网站发布目录通常为`/var/www/html`。你可以将准备好的...
在描述中提到的文件列表中,我们可以看到一些与PHP相关的文件: - **jquery.js**:这是一个JavaScript库,用于简化DOM操作、事件处理和Ajax交互。 - **index.php**:这是网站的入口点,通常包含对其他PHP文件的引用...
Apache是世界上最流行的开源Web服务器,它提供了丰富的功能和强大的扩展性。在Apache中实现文件的上传和下载功能是常见的需求,特别是在开发交互式网站时。本篇将详细讲解如何利用Apache进行文件上传与下载。 首先...
【Mac Apache服务器测试用资源】 在Mac操作系统上配置Apache服务器是一项常见的任务,尤其对于开发者来说,这能够方便地搭建本地Web开发环境。本资源集合了一系列用于测试的文件,包括HTML、PHP、图片、视频和JSON...
### Apache服务器配置与使用知识点详解 #### 一、Apache服务器简介 Apache服务器是一款广泛使用的开源Web服务器软件,它能够高效地处理HTTP请求,并提供多种功能扩展。Apache支持跨平台运行,包括Windows、Linux、...
【Apache服务器配置与管理】 Apache服务器是互联网上最广泛使用的HTTP服务器,自1996年4月以来,其市场份额一直领先。Apache服务器以其跨平台性、无限可扩展性和卓越的工作性能及稳定性受到广大用户的青睐。它能...
配置文件是Apache服务器的核心,通过编辑`httpd.conf`配置文件,可以对服务器的全局环境和主服务器配置进行设置。例如,可以设置`ServerRoot`来指定服务器的根目录,更改`ServerName`来指定服务器的域名,以及修改`...
4. **测试Apache服务器**: - 重启Apache服务,可以在服务管理器中操作,或通过命令行`net stop apache2.2`和`net start apache2.2`。 - 打开浏览器,输入`http://localhost`或`http://127.0.0.1`,如果看到Apache...