github.com/krum110487/go-htaccess@v0.0.0-20240316004156-60641c8e7598/tests/data/apache_2_2_34/manual/howto/index.html.en (about)

     1  <?xml version="1.0" encoding="ISO-8859-1"?>
     2  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3  <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
     4  <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type" />
     5  <!--
     6          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
     7                This file is generated from xml source: DO NOT EDIT
     8          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
     9        -->
    10  <title>How-To / Tutorials - Apache HTTP Server Version 2.2</title>
    11  <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
    12  <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
    13  <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="../style/css/prettify.css" />
    14  <script src="../style/scripts/prettify.min.js" type="text/javascript">
    15  </script>
    16  
    17  <link href="../images/favicon.ico" rel="shortcut icon" /><link href="http://httpd.apache.org/docs/current/howto/index.html" rel="canonical" /></head>
    18  <body id="manual-page" class="no-sidebar"><div id="page-header">
    19  <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
    20  <p class="apache">Apache HTTP Server Version 2.2</p>
    21  <img alt="" src="../images/feather.gif" /></div>
    22  <div class="up"><a href="../"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
    23  <div id="path">
    24  <a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.2</a></div><div id="page-content"><div class="retired"><h4>Please note</h4>
    25              <p> This document refers to a legacy release (<strong>2.2</strong>) of Apache httpd. The active release (<strong>2.4</strong>) is documented <a href="http://httpd.apache.org/docs/current">here</a>. If you have not already upgraded, please follow <a href="http://httpd.apache.org/docs/current/upgrading.html">this link</a> for more information.</p>
    26          <p>You may follow <a href="http://httpd.apache.org/docs/current/howto/">this link</a> to go to the current version of this document.</p></div><div id="preamble"><h1>How-To / Tutorials</h1>
    27  <div class="toplang">
    28  <p><span>Available Languages: </span><a href="../en/howto/" title="English">&nbsp;en&nbsp;</a> |
    29  <a href="../ja/howto/" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
    30  <a href="../ko/howto/" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
    31  <a href="../zh-cn/howto/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
    32  </div>
    33  </div>
    34  <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
    35  <div class="section">
    36  <h2><a name="howto" id="howto">How-To / Tutorials</a></h2>
    37  
    38      
    39  
    40      <dl>
    41        <dt>Authentication and Authorization</dt>
    42        <dd>
    43          <p>Authentication is any process by which you verify that
    44          someone is who they claim they are. Authorization is any
    45          process by which someone is allowed to be where they want to
    46          go, or to have information that they want to have.</p>
    47  
    48          <p>See: <a href="auth.html">Authentication, Authorization</a></p>
    49        </dd>
    50      </dl>
    51  
    52      <dl>
    53        <dt>Access Control</dt>
    54        <dd>
    55          <p>Access control refers to the process of restricting, or
    56          granting access to a resource based on arbitrary criteria. There
    57          are a variety of different ways that this can be
    58          accomplished.</p>
    59  
    60          <p>See: <a href="access.html">Access Control</a></p>
    61        </dd>
    62      </dl>
    63  
    64     <dl>
    65        <dt>Dynamic Content with CGI</dt>
    66        <dd>
    67          <p>The CGI (Common Gateway Interface) defines a way for a web
    68          server to interact with external content-generating programs,
    69          which are often referred to as CGI programs or CGI scripts. It
    70          is the simplest, and most common, way to put dynamic content on
    71          your web site. This document will be an introduction to setting
    72          up CGI on your Apache web server, and getting started writing
    73          CGI programs.</p>
    74  
    75          <p>See: <a href="cgi.html">CGI: Dynamic Content</a></p>
    76        </dd>
    77      </dl>
    78  
    79      <dl>
    80        <dt><code>.htaccess</code> files</dt>
    81        <dd>
    82          <p><code>.htaccess</code> files provide a way to make configuration
    83          changes on a per-directory basis. A file, containing one or more
    84          configuration directives, is placed in a particular document directory,
    85          and the directives apply to that directory, and all subdirectories thereof.</p>
    86  
    87          <p>See: <a href="htaccess.html"><code>.htaccess</code> files</a></p>
    88        </dd>
    89      </dl>
    90  
    91      <dl>
    92        <dt>Introduction to Server Side Includes</dt>
    93        <dd>
    94          <p>SSI (Server Side Includes) are directives that are placed in
    95          HTML pages, and evaluated on the server while the pages are
    96          being served. They let you add dynamically generated content to
    97          an existing HTML page, without having to serve the entire page
    98          via a CGI program, or other dynamic technology.</p>
    99  
   100          <p>See: <a href="ssi.html">Server Side Includes (SSI)</a></p>
   101        </dd>
   102      </dl>
   103  
   104      <dl>
   105        <dt>Per-user web directories</dt>
   106        <dd>
   107          <p>On systems with multiple users, each user can be permitted to have a
   108          web site in their home directory using the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive. Visitors
   109          to a URL <code>http://example.com/~username/</code> will get content
   110          out of the home directory of the user "<code>username</code>", out of
   111          the subdirectory specified by the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive.</p>
   112  
   113          <p>See: <a href="public_html.html">User web directories (<code>public_html</code>)</a></p>
   114        </dd>
   115      </dl>
   116  
   117    </div></div>
   118  <div class="bottomlang">
   119  <p><span>Available Languages: </span><a href="../en/howto/" title="English">&nbsp;en&nbsp;</a> |
   120  <a href="../ja/howto/" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
   121  <a href="../ko/howto/" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
   122  <a href="../zh-cn/howto/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
   123  </div><div id="footer">
   124  <p class="apache">Copyright 2017 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
   125  <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
   126  if (typeof(prettyPrint) !== 'undefined') {
   127      prettyPrint();
   128  }
   129  //--><!]]></script>
   130  </body></html>