diff options
-rw-r--r-- | docs/manual/configuring.html.en | 2 | ||||
-rw-r--r-- | docs/manual/howto/ssi.html.en | 6 | ||||
-rw-r--r-- | docs/manual/install.html.en | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_autoindex.html.en | 5 | ||||
-rw-r--r-- | docs/manual/mod/mod_disk_cache.html.en | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_log_config.html.en | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_mime.html.en | 13 | ||||
-rw-r--r-- | docs/manual/mod/mod_ssl.html.en | 2 | ||||
-rw-r--r-- | docs/manual/platform/netware.html.en | 2 | ||||
-rw-r--r-- | docs/manual/sitemap.html.en | 2 |
10 files changed, 17 insertions, 21 deletions
diff --git a/docs/manual/configuring.html.en b/docs/manual/configuring.html.en index 60eb963f52..2353d49de7 100644 --- a/docs/manual/configuring.html.en +++ b/docs/manual/configuring.html.en @@ -62,7 +62,7 @@ HTTP server.</p> <p>Apache is a modular server. This implies that only the most basic functionality is included in the core server. Extended - features are available through <a href="mod/index-bytype.html">modules</a> which can be loaded + features are available through <a href="mod/">modules</a> which can be loaded into Apache. By default, a <a href="mod/module-dict.html#Status">base</a> set of modules is included in the server at compile-time. If the server is compiled to use <a href="dso.html">dynamically loaded</a> diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index 58b120f7cd..0484511acc 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -68,12 +68,12 @@ existing HTML documents.</p> order to give it a <code>.shtml</code> extension, so that those directives would be executed.</p> - <p>The other method is to use the <code class="directive"><a href="../mod/mod_includes.html#xbithack">XBitHack</a></code> directive:</p> + <p>The other method is to use the <code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code> directive:</p> <div class="example"><p><code> XBitHack on </code></p></div> - <p><code class="directive"><a href="../mod/mod_includes.html#xbithack">XBitHack</a></code> + <p><code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code> tells Apache to parse files for SSI directives if they have the execute bit set. So, to add SSI directives to an existing page, rather than having to change @@ -87,7 +87,7 @@ existing HTML documents.</p> see people recommending that you just tell Apache to parse all <code>.html</code> files for SSI, so that you don't have to mess with <code>.shtml</code> file names. These folks have - perhaps not heard about <code class="directive"><a href="../mod/mod_includes.html#xbithack">XBitHack</a></code>. The thing to + perhaps not heard about <code class="directive"><a href="../mod/mod_include.html#xbithack">XBitHack</a></code>. The thing to keep in mind is that, by doing this, you're requiring that Apache read through every single file that it sends out to clients, even if they don't contain any SSI directives. This diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index f488d82444..31110cc68f 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -379,7 +379,7 @@ functionality is included in the core server. Extended features are available in various modules. During the configuration process, you must select which modules to compile for use with - your server. You can view a <a href="mod/index.html">list of modules</a> included in + your server. You can view a <a href="mod/">list of modules</a> included in the documentation. Those modules with a <a href="mod/module-dict.html#Status">status</a> of "Base" are included by default and must be specifically disabled if you do not want them (e.g. <code class="module"><a href="./mod/mod_userdir.html">mod_userdir</a></code>). Modules with any diff --git a/docs/manual/mod/mod_autoindex.html.en b/docs/manual/mod/mod_autoindex.html.en index f076a5125a..fa76cd5510 100644 --- a/docs/manual/mod/mod_autoindex.html.en +++ b/docs/manual/mod/mod_autoindex.html.en @@ -37,14 +37,13 @@ <code class="directive"><a href="../mod/core.html#options">Options</a></code> directive for more details.</p> - <p>If the <code class="directive"><a href="../mod/autoindex.html#fancyindexing">FancyIndexing</a></code> - option is given with the <code class="directive"><a href="../mod/autoindex.html#indexoptions">IndexOptions</a></code> directive, + <p>If the <code><a href="#indexoptions:fancyindexing">FancyIndexing</a></code> option is given with the <code class="directive"><a href="#indexoptions">IndexOptions</a></code> 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 - <code class="directive"><a href="../mod/autoindex.html#indexoptions">IndexOptions</a></code> directive's + <code class="directive"><a href="#indexoptions">IndexOptions</a></code> directive's <code>SuppressColumnSorting</code> option.</p> <p>Note that when the display is sorted by "Size", it's the diff --git a/docs/manual/mod/mod_disk_cache.html.en b/docs/manual/mod/mod_disk_cache.html.en index d7b05aa108..46a4b2b484 100644 --- a/docs/manual/mod/mod_disk_cache.html.en +++ b/docs/manual/mod/mod_disk_cache.html.en @@ -13,7 +13,7 @@ <div class="warning"> This module is experimental. Documentation is still under development... </div> - <p><code class="module"><a href="../mod/mod_disk_cache.html">mod_disk_cache</a></code> implements a disk based storage manager for use with <code class="module"><a href="../mod/mod_proxy..html">mod_proxy.</a></code></p> + <p><code class="module"><a href="../mod/mod_disk_cache.html">mod_disk_cache</a></code> implements a disk based storage manager for use with <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code>.</p> <p>Content stored and retrived keyed to the URL. Content with access protections is not cached.</p> <div class="note"> diff --git a/docs/manual/mod/mod_log_config.html.en b/docs/manual/mod/mod_log_config.html.en index 3c27376a45..c1722ff2e1 100644 --- a/docs/manual/mod/mod_log_config.html.en +++ b/docs/manual/mod/mod_log_config.html.en @@ -219,7 +219,7 @@ enable <code class="module"><a href="../mod/mod_logio.html">mod_logio</a></code> <p>The <code class="directive">CookieLog</code> directive sets the filename for logging of cookies. The filename is relative to the <code class="directive"><a href="../mod/core.html#serverroot">serverroot</a></code>. This directive is - included only for compatibility with <code class="module"><a href="../mod/mod_cookies.html">mod_cookies</a></code>, + included only for compatibility with <code>mod_cookies</code>, and is deprecated.</p> </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="directive-section"><h2><a name="CustomLog" id="CustomLog">CustomLog</a> <a name="customlog" id="customlog">Directive</a></h2><table class="directive"><tr><th><a href="directive-dict.html#Description">Description: </a></th><td>Sets filename and format of log file</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax: diff --git a/docs/manual/mod/mod_mime.html.en b/docs/manual/mod/mod_mime.html.en index 17b06494cc..f63d7c8b89 100644 --- a/docs/manual/mod/mod_mime.html.en +++ b/docs/manual/mod/mod_mime.html.en @@ -154,14 +154,11 @@ which document to give to the client, when there are alternative documents in more than one character set, language, encoding or mime type. All filename extensions associations - created with <code class="module"><a href="../mod/AddCharset.html">AddCharset</a></code>, <code class="module"><a href="../mod/AddEncoding.html">AddEncoding</a></code>, - <code class="module"><a href="../mod/AddLanguage.html">AddLanguage</a></code> and <code class="module"><a href="../mod/AddType.html">AddType</a></code> directives - (and extensions listed in the <code class="module"><a href="../mod/MimeMagicFile.html">MimeMagicFile</a></code>) - participate in this select process. Filename extensions that - are only associated using the <code class="module"><a href="../mod/AddHandler.html">AddHandler</a></code>, - <code class="module"><a href="../mod/AddInputFilter.html">AddInputFilter</a></code> or <code class="module"><a href="../mod/AddOutputFilter.html">AddOutputFilter</a></code> - directives may be included or excluded from matching by using - the <code class="directive">MultiviewsMatch</code> directive.</p> + created with <code class="directive"><a href="#addcharset">AddCharset</a></code>, + <code class="directive"><a href="#addencoding">AddEncoding</a></code>, <code class="directive"><a href="#addlanguage">AddLanguage</a></code> and <code class="directive"><a href="#addtype">AddType</a></code> directives + (and extensions listed in the <code class="directive"><a href="../mod/mod_mime_magic.html#mimemagicfile">MimeMagicFile</a></code>) participate in this select process. + Filename extensions that are only associated using the <code class="directive"><a href="#addhandler">AddHandler</a></code>, <code class="directive"><a href="#addinputfilter">AddInputFilter</a></code> or <code class="directive"><a href="#addoutputfilter">AddOutputFilter</a></code> directives may be included or excluded + from matching by using the <code class="directive"><a href="#multiviewsmatch">MultiviewsMatch</a></code> directive.</p> <h3>Charset</h3> diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index 6d20468c25..5269518c05 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -103,7 +103,7 @@ compatibility variables.</p> </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="section"><h2>Custom Log Formats</h2> <p>When <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> is built into Apache or at least -loaded (under DSO situation) additional functions exist for the <a href="../mod_log_config.html#formats">Custom Log Format</a> of +loaded (under DSO situation) additional functions exist for the <a href="mod_log_config.html#formats">Custom Log Format</a> of <code class="module"><a href="../mod/mod_log_config.html">mod_log_config</a></code>. First there is an additional ``<code>%{</code><em>varname</em><code>}x</code>'' eXtension format function which can be used to expand any variables diff --git a/docs/manual/platform/netware.html.en b/docs/manual/platform/netware.html.en index da25e0307a..0621897981 100644 --- a/docs/manual/platform/netware.html.en +++ b/docs/manual/platform/netware.html.en @@ -15,7 +15,7 @@ <p>The bug reporting page and dev-httpd mailing list are <em>not</em> provided to answer questions about configuration or running Apache. Before you submit a bug report or request, first consult this document, the - <a href="../faq/index.html">Frequently Asked Questions</a> page and the other + <a href="../faq/">Frequently Asked Questions</a> page and the other relevant documentation topics. If you still have a question or problem, post it to the <a href="news://developer-forums.novell.com/novell.devsup.webserver"> novell.devsup.webserver</a> newsgroup, where many Apache users are more than diff --git a/docs/manual/sitemap.html.en b/docs/manual/sitemap.html.en index 7d6bd78cf1..f99fa41dd6 100644 --- a/docs/manual/sitemap.html.en +++ b/docs/manual/sitemap.html.en @@ -59,7 +59,7 @@ a Service</a></li> <li><a href="platform/netware.html">Using Apache with Novell NetWare</a></li> <li><a href="platform/perf-hp.html">Running a High-Performance Web Server on HPUX</a></li> -<li><a href="ebcdic.html">The Apache EBCDIC Port</a></li> +<li><a href="platform/ebcdic.html">The Apache EBCDIC Port</a></li> </ul></div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div><div class="section"><h2><a name="programs" id="programs">Apache HTTP Server and Supporting Programs</a></h2><ul><li class="separate"><a href="programs/">Overview</a></li> <li><a href="programs/httpd.html">Manual Page: httpd</a></li> <li><a href="programs/ab.html">Manual Page: ab</a></li> |