]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
update transformation
authorAndré Malo <nd@apache.org>
Thu, 6 Feb 2014 14:21:05 +0000 (14:21 +0000)
committerAndré Malo <nd@apache.org>
Thu, 6 Feb 2014 14:21:05 +0000 (14:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1565268 13f79535-47bb-0310-9956-ffa450edef68

31 files changed:
docs/manual/caching.html.en
docs/manual/caching.html.fr
docs/manual/developer/API.html.en
docs/manual/developer/filters.html.en
docs/manual/developer/modules.html.en
docs/manual/developer/modules.html.ja.utf8
docs/manual/developer/request.html.en
docs/manual/env.html.en
docs/manual/env.html.ja.utf8
docs/manual/env.html.ko.euc-kr
docs/manual/env.html.tr.utf8
docs/manual/howto/cgi.html.en
docs/manual/misc/rewriteguide.html.ko.euc-kr
docs/manual/mod/mod_authn_dbd.html.en
docs/manual/mod/mod_authnz_ldap.html.en
docs/manual/mod/mod_authnz_ldap.html.fr
docs/manual/mod/mod_autoindex.html.tr.utf8
docs/manual/mod/mod_proxy.html.en
docs/manual/mod/mod_proxy.html.fr
docs/manual/mod/mod_proxy_ajp.html.en
docs/manual/mod/mod_proxy_ajp.html.ja.utf8
docs/manual/mod/mod_rewrite.html.en
docs/manual/mod/mod_rewrite.html.fr
docs/manual/mod/mod_ssl.html.en
docs/manual/mod/mod_usertrack.html.en
docs/manual/platform/perf-hp.html.en
docs/manual/platform/perf-hp.html.ko.euc-kr
docs/manual/platform/win_compiling.html.ko.euc-kr
docs/manual/rewrite/advanced.html.en
docs/manual/ssl/ssl_faq.html.en
docs/manual/ssl/ssl_howto.html.en

index 655f6b7afb19404af68e490738ff31b5931e6aaf..87cef9cfc30973aaea1628f96ed15c650ec570ea 100644 (file)
       in which it matters: If you are using <a href="howto/ssi.html">Server 
       Side Includes</a>;</p>
 
-      <div class="example"><pre>
-&lt;!-- The following include can be cached --&gt;
+      <div class="example"><pre>&lt;!-- The following include can be cached --&gt;
 &lt;!--#include virtual="/footer.html" --&gt; 
 
 &lt;!-- The following include can not be cached --&gt;
@@ -466,8 +465,7 @@ Vary: negotiate,accept-language,accept-charset
       the difference in the time it takes to read a file for the first time
       and the second time;</p>
 
-      <div class="example"><pre>
-colm@coroebus:~$ time cat testfile &gt; /dev/null
+      <div class="example"><pre>colm@coroebus:~$ time cat testfile &gt; /dev/null
 real    0m0.065s
 user    0m0.000s
 sys     0m0.001s
@@ -534,8 +532,7 @@ sys     0m0.000s</pre></div>
 
       <p>Caching of this type is enabled via;</p>
 
-      <div class="example"><pre>
-# Enable memory caching
+      <div class="example"><pre># Enable memory caching
 CacheEnable mem /
 
 # Limit the size of the cache to 1 Megabyte
@@ -555,8 +552,7 @@ MCacheSize 1024</pre></div>
 
     <p>Typically the module will be configured as so;</p>
 
-    <div class="example"><pre>
-CacheRoot   /var/cache/apache/
+    <div class="example"><pre>CacheRoot   /var/cache/apache/
 CacheEnable disk /
 CacheDirLevels 2
 CacheDirLength 1</pre></div>
index 9f9ef3d7ff1bb600658764e7bbfc08a604448c9a..590f1f9a49b896543f2da6d5d0e89c8da0d459ed 100644 (file)
       En général, cela n'a que peu d'effet, à moins que vous n'utilisiez les
       <a href="howto/ssi.html">Inclusions Côté Serveur (SSI)</a>;</p>
 
-      <div class="example"><pre>
-&lt;!-- L'inclusion suivante peut être mise en cache --&gt;
+      <div class="example"><pre>&lt;!-- L'inclusion suivante peut être mise en cache --&gt;
 &lt;!--#include virtual="/footer.html" --&gt;
 
 &lt;!-- L'inclusion suivante ne peut pas être mise en cache --&gt;
@@ -530,8 +529,7 @@ Vary: negotiate,accept-language,accept-charset
       temps nécessaire à la première lecture d'un fichier et le temps
       nécessaire à sa deuxième lecture;</p>
 
-      <div class="example"><pre>
-colm@coroebus:~$ time cat testfile &gt; /dev/null
+      <div class="example"><pre>colm@coroebus:~$ time cat testfile &gt; /dev/null
 real    0m0.065s
 user    0m0.000s
 sys     0m0.001s
@@ -608,8 +606,7 @@ sys     0m0.000s</pre></div>
 
       <p>La mise en cache selon cette méthode est activée comme suit :</p>
 
-      <div class="example"><pre>
-# Activation de la mise en cache en mémoire
+      <div class="example"><pre># Activation de la mise en cache en mémoire
 CacheEnable mem /
 
 # Limite la taille du cache à 1 Mégaoctet
@@ -630,8 +627,7 @@ MCacheSize 1024</pre></div>
 
     <p>Typiquement, le module sera configuré comme suit :</p>
 
-    <div class="example"><pre>
-CacheRoot   /var/cache/apache/
+    <div class="example"><pre>CacheRoot   /var/cache/apache/
 CacheEnable disk /
 CacheDirLevels 2
 CacheDirLength 1</pre></div>
index 86181947cc8116fc344296e9ddcf7ab6089464cc..7a749880bec1f4b376b841fab5721de118d8af4b 100644 (file)
@@ -358,9 +358,7 @@ struct stat finfo;    /* Set by server core;
 </code></p><pre>int header_only;     /* HEAD request, as opposed to GET */
 char *protocol;      /* Protocol, as given to us, or HTTP/0.9 */
 char *method;        /* GET, HEAD, POST, <em>etc.</em> */
-int method_number;   /* M_GET, M_POST, <em>etc.</em> */
-
-</pre><p><code>
+int method_number;   /* M_GET, M_POST, <em>etc.</em> */</pre><p><code>
         /* Info for logging */<br />
         <br />
         char *the_request;<br />
index c0e8306204154cd344c787a012b3cad95a652e3e..1347af7e18ac3097bb4d454d0f121297691e13d9 100644 (file)
     same set of filters as the main request.  A graphical representation
     might help:</p>
 
-<div class="example"><pre>
-Default_handler --&gt; includes_filter --&gt; byterange --&gt; ...
-</pre></div>
+<div class="example"><pre>Default_handler --&gt; includes_filter --&gt; byterange --&gt; ...</pre></div>
 
     <p>If the includes filter creates a sub request, then we don't want the
     data from that sub-request to go through the includes filter, because it
     might not be SSI data.  So, the subrequest adds the following:</p>
 
-<div class="example"><pre>    
-Default_handler --&gt; includes_filter -/-&gt; byterange --&gt; ...
+<div class="example"><pre>Default_handler --&gt; includes_filter -/-&gt; byterange --&gt; ...
                                     /
-Default_handler --&gt; sub_request_core
-</pre></div>
+Default_handler --&gt; sub_request_core</pre></div>
 
     <p>What happens if the subrequest is SSI data?  Well, that's easy, the
     <code>includes_filter</code> is a resource filter, so it will be added to
index f67f7cbcefe883b9aecb10782b9fb1b95a0be87b..6cb8b73f20fb92b4eee4aeb501f72144239a8aa9 100644 (file)
@@ -86,8 +86,7 @@
       will be called in.</p>
 
       <p>This is the code that was added to <code>mod_mmap_static</code>:</p>
-      <div class="example"><pre>
-static void register_hooks(void)
+      <div class="example"><pre>static void register_hooks(void)
 {
     static const char * const aszPre[]={ "http_core.c",NULL };
     ap_hook_post_config(mmap_post_config,NULL,NULL,HOOK_MIDDLE);
@@ -131,8 +130,7 @@ static void register_hooks(void)
       creating your module definition. The old defintion looked
       like</p>
 
-      <div class="example"><pre>
-module MODULE_VAR_EXPORT <var>module_name</var>_module =
+      <div class="example"><pre>module MODULE_VAR_EXPORT <var>module_name</var>_module =
 {
     STANDARD_MODULE_STUFF,
     /* initializer */
@@ -156,8 +154,7 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
 };</pre></div>
 
       <p>The new structure is a great deal simpler...</p>
-      <div class="example"><pre>
-module MODULE_VAR_EXPORT <var>module_name</var>_module =
+      <div class="example"><pre>module MODULE_VAR_EXPORT <var>module_name</var>_module =
 {
     STANDARD20_MODULE_STUFF,
     /* create per-directory config structures */
index 4148b70470df6b768efccbaafb43e9693ced6f35..5040b83a459e773ab29ade5e26de63f26ad78428 100644 (file)
@@ -95,8 +95,7 @@
 
     <p>以下は、<code>mod_mmap_static</code> に追加したコードです:</p>
 
-      <div class="example"><pre>
-static void register_hooks(void)
+      <div class="example"><pre>static void register_hooks(void)
 {
     static const char * const aszPre[]={ "http_core.c",NULL };
     ap_hook_post_config(mmap_post_config,NULL,NULL,HOOK_MIDDLE);
@@ -139,8 +138,7 @@ static void register_hooks(void)
       <p>モジュールの定義を作成する際に注意しなければならない
       ステージの数は激減しています。古い定義は次のようになっていました。</p>
 
-      <div class="example"><pre>
-module MODULE_VAR_EXPORT <var>module_name</var>_module =
+      <div class="example"><pre>module MODULE_VAR_EXPORT <var>module_name</var>_module =
 {
     STANDARD_MODULE_STUFF,
     /* initializer */
@@ -164,8 +162,7 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
 };</pre></div>
 
     <p>新しい構造体はとってもシンプルです…</p>
-      <div class="example"><pre>
-module MODULE_VAR_EXPORT <var>module_name</var>_module =
+      <div class="example"><pre>module MODULE_VAR_EXPORT <var>module_name</var>_module =
 {
     STANDARD20_MODULE_STUFF,
     /* create per-directory config structures */
index e66524e721587aaae274c9809180769c49b78f6a..41bf95fcc32e65f12e998e0f17208e7527bef9ed 100644 (file)
 <h2><a name="security" id="security">The Security Phase</a></h2>
     <p>Needs Documentation. Code is:</p>
 
-    <div class="example"><pre>
-switch (ap_satisfies(r)) {
+    <div class="example"><pre>switch (ap_satisfies(r)) {
 case SATISFY_ALL:
 case SATISFY_NOSPEC:
         if ((access_status = ap_run_access_checker(r)) != 0) {
index 45073bf627da53f18bd39e791b9f148e95f7ce72..71d124eba9dd754c6fad5277225b71551abc25f0 100644 (file)
         httpd.conf to deal with known client problems.  Since the affected clients
         are no longer seen in the wild, this configuration is likely no-longer
         necessary.</p>
-<div class="example"><pre>
-#
+<div class="example"><pre>#
 # The following directives modify normal HTTP response behavior.
 # The first directive disables keepalive for Netscape 2.x and browsers that
 # spoof it. There are known problems with these browser implementations.
index de40726e4e06afb8bc238974682da4354d4027ce..dc5e5641ca89d69fa520374bcc7bd05e761a7659 100644 (file)
         httpd.conf に次の行を加えるよう推奨されていましたが、
         今となっては、問題としていたクライアントは実際には見かけることは
         なくなってきたので、この設定はもはや必要ないかもしれません。</p>
-<div class="example"><pre>
-#
+<div class="example"><pre>#
 # The following directives modify normal HTTP response behavior.
 # The first directive disables keepalive for Netscape 2.x and browsers that
 # spoof it. There are known problems with these browser implementations.
@@ -372,8 +371,7 @@ BrowserMatch "JDK/1\.0" force-response-1.0</pre></div>
         これを変更することで、特定のディレクトリのログ収集をやめたり、
         特定のホストからのリクエストのログ収集をやめたりすることが簡単にできます。
         </p>
-    <div class="example"><pre>
-SetEnvIf Request_URI \.gif image-request
+    <div class="example"><pre>SetEnvIf Request_URI \.gif image-request
 SetEnvIf Request_URI \.jpg image-request
 SetEnvIf Request_URI \.png image-request
 CustomLog logs/access_log common env=!image-request</pre></div>
@@ -387,8 +385,7 @@ CustomLog logs/access_log common env=!image-request</pre></div>
         これは推奨されている設定ではありませんが、ある限定された状況では有効です。
         ここでは、すべての画像は <code>/web/images</code>
        というディレクトリにあると仮定します。</p>
-    <div class="example"><pre>
-SetEnvIf Referer "^http://www.example.com/" local_referal
+    <div class="example"><pre>SetEnvIf Referer "^http://www.example.com/" local_referal
 # Allow browsers that do not send Referer info
 SetEnvIf Referer "^$" local_referal
 &lt;Directory /web/images&gt;
index 556e5aa7a54dac9370c19f0bc2abe0d5defdd36a..6eb1f13ad0feacd1ac8b3cc2cc11bd99b1e77a60 100644 (file)
 
         <p>Ŭ¶óÀÌ¾ðÆ®µéÀÇ À̹̠¾Ë·ÁÁø ¹®Á¦¸¦ ÇذáÇϱâÀ§ÇØ
         httpd.conf¿¡ ´ÙÀ½ ³»¿ëÀ» Æ÷ÇÔÇϱ根ٶõ´Ù.</p>
-<div class="example"><pre>
-#
+<div class="example"><pre>#
 # ´ÙÀ½ Áö½Ã¾îµéÀº ÀϹÝÀûÀΠHTTP ÀÀ´äÀ» º¯°æÇÑ´Ù.
 # Ã¹¹øÂ° Áö½Ã¾î´Â Netscape 2.x¿Í À̸¦ °¡ÀåÇÑ ºê¶ó¿ìÀú¿¡°Ô
 # keepalive¸¦ »ç¿ëÇÏÁö ¾Ê´Â´Ù. À̵頺ê¶ó¿ìÀú ±¸Çö¿¡ ¹®Á¦°¡ ÀÖ´Ù.
@@ -338,8 +337,7 @@ BrowserMatch "JDK/1\.0" force-response-1.0</pre></div>
         <p>ÀÌ ¿¹Á¦´Â À̹ÌÁö¿¡ ´ëÇÑ ¿äûÀ» Á¢±Ù ·Î±×¿¡ ±â·ÏÇÏÁö
         ¾Ê´Â´Ù. Æ¯Á¤ µð·ºÅ丮¿¡ ´ëÇѠȤÀº Æ¯Á¤ È£½ºÆ®¿¡¼­ ¿Â
         ¿äûÀ» ·Î±×ÇÏÁö ¾Êµµ·Ï ½±°Ô ¼öÁ¤ÇÒ ¼ö ÀÖ´Ù.</p>
-    <div class="example"><pre>
-SetEnvIf Request_URI \.gif image-request
+    <div class="example"><pre>SetEnvIf Request_URI \.gif image-request
 SetEnvIf Request_URI \.jpg image-request
 SetEnvIf Request_URI \.png image-request
 CustomLog logs/access_log common env=!image-request</pre></div>
@@ -353,8 +351,7 @@ CustomLog logs/access_log common env=!image-request</pre></div>
         ¼³Á¤À» ±ÇÀåÇÏÁö´Â ¾ÊÀ¸¸ç, Á¦ÇѵȠ°æ¿ì¿¡¸¸ µ¿ÀÛÇÑ´Ù.
         ¿ì¸®´Â ¸ðµç À̹ÌÁö°¡ /web/images µð·ºÅ丮 ¾È¿¡ ÀÖ´Ù°í
         °¡Á¤ÇÑ´Ù.</p>
-    <div class="example"><pre>
-SetEnvIf Referer "^http://www.example.com/" local_referal
+    <div class="example"><pre>SetEnvIf Referer "^http://www.example.com/" local_referal
 # Referer Á¤º¸¸¦ º¸³»Áö ¾Ê´Â ºê¶ó¿ìÀú¸¦ Çã¿ëÇÑ´Ù
 SetEnvIf Referer "^$" local_referal
 &lt;Directory /web/images&gt;
index 688df9fdd10ad385360d1ccea214dc8144586e60..2de827ba847a0b89e4ab2aa4bc8799e3a896de08 100644 (file)
           önerilirdi. Fakat, böyle tarayıcılar artık ortalıkta görünmediğinden
           bu yapılandırmaya da artık gerek kalmamıştır.</p>
 
-        <div class="example"><pre>
-#
+        <div class="example"><pre>#
 # Aşağıdaki yönergeler normal HTTP yanıt davranışını değiştirirler.
 # İlk yönerge Netscape 2.x ve kendini öyle gösteren tarayıcılar için
 # kalıcı bağlantıyı (keepalive) iptal eder. İkinci yönerge ise HTTP/1.1
index 6f7c71d294fdcb5936bbb1e5e92dc52cb4c72931..2e2c9af9be5179f6f53c95607053662a811b3e9a 100644 (file)
@@ -64,9 +64,7 @@
     directive has not been commented out.  A correctly configured directive
     may look like this:
 
-    <pre class="prettyprint lang-config">
-      LoadModule cgi_module modules/mod_cgi.so
-    </pre>
+    <pre class="prettyprint lang-config">LoadModule cgi_module modules/mod_cgi.so</pre>
 </div>
 
     <h3><a name="scriptalias" id="scriptalias">ScriptAlias</a></h3>
index bb3df5b1336d6b40d8546edbc174ca3bc5d7e1f0..d1883ad0f37a458db9f5be879ec7be75e479cf2e 100644 (file)
           ´ëüÇϰí, <code>/u/user</code> ¸¶Áö¸·¿¡ ½½·¡½¬°¡ ¾ø´Ù¸é
           Ãß°¡ÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteRule   ^/<strong>~</strong>([^/]+)/?(.*)    /<strong>u</strong>/$1/$2  [<strong>R</strong>]
-RewriteRule   ^/([uge])/(<strong>[^/]+</strong>)$  /$1/$2<strong>/</strong>   [<strong>R</strong>]
-</pre></div>
+<div class="example"><pre>RewriteRule   ^/<strong>~</strong>([^/]+)/?(.*)    /<strong>u</strong>/$1/$2  [<strong>R</strong>]
+RewriteRule   ^/([uge])/(<strong>[^/]+</strong>)$  /$1/$2<strong>/</strong>   [<strong>R</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -136,15 +134,13 @@ RewriteRule   ^/([uge])/(<strong>[^/]+</strong>)$  /$1/$2<strong>/</strong>   [<
         <dt>ÇØ°áÃ¥:</dt>
 
         <dd>
-<div class="example"><pre>
-RewriteCond %{HTTP_HOST}   !^fully\.qualified\.domain\.name [NC]
+<div class="example"><pre>RewriteCond %{HTTP_HOST}   !^fully\.qualified\.domain\.name [NC]
 RewriteCond %{HTTP_HOST}   !^$
 RewriteCond %{SERVER_PORT} !^80$
 RewriteRule ^/(.*)         http://fully.qualified.domain.name:%{SERVER_PORT}/$1 [L,R]
 RewriteCond %{HTTP_HOST}   !^fully\.qualified\.domain\.name [NC]
 RewriteCond %{HTTP_HOST}   !^$
-RewriteRule ^/(.*)         http://fully.qualified.domain.name/$1 [L,R]
-</pre></div>
+RewriteRule ^/(.*)         http://fully.qualified.domain.name/$1 [L,R]</pre></div>
         </dd>
       </dl>
 
@@ -182,10 +178,8 @@ RewriteRule ^/(.*)         http://fully.qualified.domain.name/$1 [L,R]
           ÇÒ ¼ö ¾ø´Ù. <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>¸¦ »ç¿ëÇϸé
           ÁøÂ¥ °£´ÜÇÏ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine on
-RewriteRule   <strong>^/$</strong>  /e/www/  [<strong>R</strong>]
-</pre></div>
+<div class="example"><pre>RewriteEngine on
+RewriteRule   <strong>^/$</strong>  /e/www/  [<strong>R</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -225,22 +219,18 @@ RewriteRule   <strong>^/$</strong>  /e/www/  [<strong>R</strong>]
 
           <p>±×·¡¼­ À̸¦ ÇذáÇϱâÀ§ÇØ ´ÙÀ½°ú °°ÀÌ ¼³Á¤ÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
-RewriteRule    ^foo<strong>$</strong>  foo<strong>/</strong>  [<strong>R</strong>]
-</pre></div>
+RewriteRule    ^foo<strong>$</strong>  foo<strong>/</strong>  [<strong>R</strong>]</pre></div>
 
           <p>Ȩµð·ºÅ丮ÀÇ ÃÖ»óÀ§ <code>.htaccess</code> ÆÄÀÏ¿¡
           ´ÙÀ½°ú °°ÀÌ ¼³Á¤ÇÒ ¼öµµ ÀÖ´Ù. ±×·¯³ª Ã³¸®Çϴµ¥ ºÎ´ãÀÌ
           µÈ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
 RewriteCond    %{REQUEST_FILENAME}  <strong>-d</strong>
-RewriteRule    ^(.+<strong>[^/]</strong>)$           $1<strong>/</strong>  [R]
-</pre></div>
+RewriteRule    ^(.+<strong>[^/]</strong>)$           $1<strong>/</strong>  [R]</pre></div>
         </dd>
       </dl>
 
@@ -269,35 +259,28 @@ RewriteRule    ^(.+<strong>[^/]</strong>)$           $1<strong>/</strong>  [R]
           (ºÐ»êµÈ) ¿ÜºÎ¸Ê¿¡ ½ÇÁ¦ ¼­¹ö Á¤º¸¸¦ ¾ò¾î¿Â´Ù. ¿ÜºÎ¸ÊÀº
           ´ÙÀ½°ú °°Àº Çü½ÄÀÌ´Ù</p>
 
-<div class="example"><pre>
-user1  server_of_user1
+<div class="example"><pre>user1  server_of_user1
 user2  server_of_user2
-:      :
-</pre></div>
+:      :</pre></div>
 
           <p>¿ì¸®´Â ÀÌ Á¤º¸¸¦ °¢°¢ <code>map.xxx-to-host</code>
           ÆÄÀÏ¿¡ ÀúÀåÇß´Ù. ´ÙÀ½À¸·Î ¸ðµç ¼­¹ö¿¡¼­ URLÀÌ ¼­¹ö¿¡
           ¾ø´Ù¸é ´ÙÀ½°ú °°Àº URLÀ»,</p>
 
-<div class="example"><pre>
-/u/user/anypath
+<div class="example"><pre>/u/user/anypath
 /g/group/anypath
-/e/entity/anypath
-</pre></div>
+/e/entity/anypath</pre></div>
 
           <p>´ÙÀ½°ú °°ÀÌ ¸®´ÙÀÌ·º¼ÇÇÑ´Ù</p>
 
-<div class="example"><pre>
-http://physical-host/u/user/anypath
+<div class="example"><pre>http://physical-host/u/user/anypath
 http://physical-host/g/group/anypath
-http://physical-host/e/entity/anypath
-</pre></div>
+http://physical-host/e/entity/anypath</pre></div>
 
           <p>¾Æ·¡ ±ÔÄ¢Àº ¸ÊÆÄÀÏÀ» »ç¿ëÇÏ¿© ÀÌ ÀÛ¾÷À» ÇÑ´Ù (server0Àº
           ¸Ê¿¡ Ç׸ñÀÌ ¾ø´Â °æ¿ì »ç¿ëÇÒ ±âº»¼­¹ö¶ó°í °¡Á¤ÇÑ´Ù):</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 
 RewriteMap      user-to-host   txt:/path/to/map.user-to-host
 RewriteMap     group-to-host   txt:/path/to/map.group-to-host
@@ -308,8 +291,7 @@ RewriteRule   ^/g/<strong>([^/]+)</strong>/?(.*)  http://<strong>${group-to-host
 RewriteRule   ^/e/<strong>([^/]+)</strong>/?(.*) http://<strong>${entity-to-host:$1|server0}</strong>/e/$1/$2
 
 RewriteRule   ^/([uge])/([^/]+)/?$          /$1/$2/.www/
-RewriteRule   ^/([uge])/([^/]+)/([^.]+.+)   /$1/$2/.www/$3\
-</pre></div>
+RewriteRule   ^/([uge])/([^/]+)/([^.]+.+)   /$1/$2/.www/$3\</pre></div>
         </dd>
       </dl>
 
@@ -337,10 +319,8 @@ RewriteRule   ^/([uge])/([^/]+)/([^.]+.+)   /$1/$2/.www/$3\
           <code>http://newserver/~user/anypath</code>·Î
           ¸®´ÙÀÌ·º¼ÇÇϸ頵ȴÙ.</p>
 
-<div class="example"><pre>
-RewriteEngine on
-RewriteRule   ^/~(.+)  http://<strong>newserver</strong>/~$1  [R,L]
-</pre></div>
+<div class="example"><pre>RewriteEngine on
+RewriteRule   ^/~(.+)  http://<strong>newserver</strong>/~$1  [R,L]</pre></div>
         </dd>
       </dl>
 
@@ -369,10 +349,8 @@ RewriteRule   ^/~(.+)  http://<strong>newserver</strong>/~$1  [R,L]
           <p>¹°°áÇ¥½Ã°¡ Àִ URLÀ» À§¿Í °°Àº ±¸Á¶·Î º¯È¯ÇϱâÀ§ÇØ
           ´ÙÀ½ ±ÔÄ¢À» »ç¿ëÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine on
-RewriteRule   ^/~(<strong>([a-z])</strong>[a-z0-9]+)(.*)  /home/<strong>$2</strong>/$1/.www$3
-</pre></div>
+<div class="example"><pre>RewriteEngine on
+RewriteRule   ^/~(<strong>([a-z])</strong>[a-z0-9]+)(.*)  /home/<strong>$2</strong>/$1/.www$3</pre></div>
         </dd>
       </dl>
 
@@ -396,8 +374,7 @@ RewriteRule   ^/~(<strong>([a-z])</strong>[a-z0-9]+)(.*)  /home/<strong>$2</stro
           ÇؿԱ⶧¹®¿¡ ³» Ãë¹ÌÀÌÀÚ ÀÏÀÌ´Ù. ¸ÅÁÖ¸¶´Ù »õ·Î ¼ÒÇÁÆ®¿þ¾î°¡
           Ãß°¡µÉ ¶§¸¶´Ù µð·ºÅ丮¸¦ ±í°Ô ¸¸µé¾î¿Ô´Ù:</p>
 
-<div class="example"><pre>
-drwxrwxr-x   2 netsw  users    512 Aug  3 18:39 Audio/
+<div class="example"><pre>drwxrwxr-x   2 netsw  users    512 Aug  3 18:39 Audio/
 drwxrwxr-x   2 netsw  users    512 Jul  9 14:37 Benchmark/
 drwxrwxr-x  12 netsw  users    512 Jul  9 00:34 Crypto/
 drwxrwxr-x   5 netsw  users    512 Jul  9 00:41 Database/
@@ -412,8 +389,7 @@ drwxrwxr-x   2 netsw  users    512 Jul  9 05:53 Office/
 drwxrwxr-x   7 netsw  users    512 Jul  9 09:24 SoftEng/
 drwxrwxr-x   7 netsw  users    512 Jul  9 12:17 System/
 drwxrwxr-x  12 netsw  users    512 Aug  3 20:15 Typesetting/
-drwxrwxr-x  10 netsw  users    512 Jul  9 14:08 X11/
-</pre></div>
+drwxrwxr-x  10 netsw  users    512 Jul  9 14:08 X11/</pre></div>
 
           <p>1996³â 7¿ù ÀÌ ÀúÀå¼Ò¸¦ ¸ÚÀִ À¥ ÀÎÅÍÆäÀ̽º¸¦ ÅëÇØ
           ¼¼»ó¿¡ °ø°³Çϱâ·Î °áÁ¤ÇÞ´Ù. "¸ÚÀÖ´Ù"´Â ¸»Àº, ÃÖ»óÀ§
@@ -431,8 +407,7 @@ drwxrwxr-x  10 netsw  users    512 Jul  9 14:08 X11/
           ÇÊ¿äÇÏ´Ù. ³ª´Â ÀÌ ½ºÅ©¸³Æ®µéÀ» ´ÙÀ½°ú °°ÀÌ
           <code>/e/netsw/.www/</code>¿¡ µÎ¾ú´Ù:</p>
 
-<div class="example"><pre>
--rw-r--r--   1 netsw  users    1318 Aug  1 18:10 .wwwacl
+<div class="example"><pre>-rw-r--r--   1 netsw  users    1318 Aug  1 18:10 .wwwacl
 drwxr-xr-x  18 netsw  users     512 Aug  5 15:51 DATA/
 -rw-rw-rw-   1 netsw  users  372982 Aug  5 16:35 LOGFILE
 -rw-r--r--   1 netsw  users     659 Aug  4 09:27 TODO
@@ -444,8 +419,7 @@ drwxr-xr-x   2 netsw  users     512 Jul  8 23:47 netsw-img/
 -rwxr-xr-x   1 netsw  users   24050 Aug  5 15:49 netsw-lsdir.cgi
 -rwxr-xr-x   1 netsw  users    1589 Aug  3 18:43 netsw-search.cgi
 -rwxr-xr-x   1 netsw  users    1885 Aug  1 17:41 netsw-tree.cgi
--rw-r--r--   1 netsw  users     234 Jul 30 16:35 netsw-unlimit.lst
-</pre></div>
+-rw-r--r--   1 netsw  users     234 Jul 30 16:35 netsw-unlimit.lst</pre></div>
 
           <p><code>DATA/</code> ÇÏÀ§µð·ºÅ丮¿¡ À§¿¡¼­ ¸»ÇÑ ÀúÀå¼Ò°¡
           ÀÖ´Ù. ½ÇÁ¦ <strong><em>net.sw</em></strong>ÀÇ ³»¿ëÀº º¸Åë
@@ -457,18 +431,15 @@ drwxr-xr-x   2 netsw  users     512 Jul  8 23:47 netsw-img/
           URL <code>/net.sw/</code>¸¦ ³»ºÎ °æ·Î <code>/e/netsw</code>·Î
           ÀçÀÛ¼ºÇϱâÀ§ÇØ µð·ºÅ丮º° ¼³Á¤ÆÄÀÏ¿¡ ´ÙÀ½°ú °°ÀÌ ¼³Á¤ÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteRule  ^net.sw$       net.sw/        [R]
-RewriteRule  ^net.sw/(.*)$  e/netsw/$1
-</pre></div>
+<div class="example"><pre>RewriteRule  ^net.sw$       net.sw/        [R]
+RewriteRule  ^net.sw/(.*)$  e/netsw/$1</pre></div>
 
           <p>ù¹øÂ° ±ÔÄ¢Àº ¸¶Áö¸·¿¡ ½½·¡½¬°¡ ¾ø´Â ¿äûÀ» À§Çؼ­
           »ç¿ëÇß´Ù! µÎ¹øÂ° ±ÔÄ¢ÀÌ ½ÇÁ¦ ÀÛ¾÷À» ÇÑ´Ù. ±×¸®°í µð·ºÅ丮º°
           ¼³Á¤ÆÄÀÏ <code>/e/netsw/.www/.wwwacl</code>¿¡ °áÁ¤ÀûÀÎ
           ¼³Á¤ÀÌ ³ª¿Â´Ù:</p>
 
-<div class="example"><pre>
-Options       ExecCGI FollowSymLinks Includes MultiViews
+<div class="example"><pre>Options       ExecCGI FollowSymLinks Includes MultiViews
 
 RewriteEngine on
 
@@ -495,8 +466,7 @@ RewriteRule   ^netsw-img/.*$           -                  [L]
 #  ´Ù¸¥ cgi ½ºÅ©¸³Æ®°¡ Ã³¸®ÇÒ
 #  ÇÏÀ§µð·ºÅ丮°¡ ³²¾Ò´Ù
 RewriteRule   !^netsw-lsdir\.cgi.*     -                  [C]
-RewriteRule   (.*)                     netsw-lsdir.cgi/$1
-</pre></div>
+RewriteRule   (.*)                     netsw-lsdir.cgi/$1</pre></div>
 
           <p>ÇØ¼®À» À§ÇÑ ÈùÆ®:</p>
 
@@ -540,10 +510,8 @@ RewriteRule   (.*)                     netsw-lsdir.cgi/$1
           <p>¸ðµç ¿äû¿¡¼­ ¾ÕºÎºÐÀ» µ¿ÀûÀ¸·Î Á¦°ÅÇϴ Àü¿ª ±ÔÄ¢À»
           »ç¿ëÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine  on
-RewriteRule    ^/cgi-bin/imagemap(.*)  $1  [PT]
-</pre></div>
+<div class="example"><pre>RewriteEngine  on
+RewriteRule    ^/cgi-bin/imagemap(.*)  $1  [PT]</pre></div>
         </dd>
       </dl>
 
@@ -567,8 +535,7 @@ RewriteRule    ^/cgi-bin/imagemap(.*)  $1  [PT]
         <dd>
           <p>¿©·¯ µð·ºÅ丮¿¡¼­ ÆÄÀÏÀ» Ã£´Â ±ÔÄ¢À» Á÷Á¢ ÇÁ·Î±×·¥ÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 
 #   ¸ÕÀú custom/¿¡¼­ Ã£±æ ½ÃµµÇϰí...
 #   ...ãÀ¸¸é ³¡!
@@ -581,8 +548,7 @@ RewriteCond         /your/docroot/<strong>dir2</strong>/%{REQUEST_FILENAME}  -f
 RewriteRule  ^(.+)  /your/docroot/<strong>dir2</strong>/$1  [L]
 
 #   ¸øÃ£À¸¸é ´Ù¸¥ Alias³ª ScriptAlias Áö½Ã¾î µîÀ¸·Î ÁøÇàÇÑ´Ù.
-RewriteRule   ^(.+)  -  [PT]
-</pre></div>
+RewriteRule   ^(.+)  -  [PT]</pre></div>
         </dd>
       </dl>
 
@@ -610,10 +576,8 @@ RewriteRule   ^(.+)  -  [PT]
           <code>/foo/bar/</code>·Î º¯È¯µÇ°í <code>STATUS</code>¶ó´Â
           È¯°æº¯¼ö °ªÀ» "java"·Î ¼³Á¤ÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine on
-RewriteRule   ^(.*)/<strong>S=([^/]+)</strong>/(.*)    $1/$3 [E=<strong>STATUS:$2</strong>]
-</pre></div>
+<div class="example"><pre>RewriteEngine on
+RewriteRule   ^(.*)/<strong>S=([^/]+)</strong>/(.*)    $1/$3 [E=<strong>STATUS:$2</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -642,12 +606,10 @@ RewriteRule   ^(.*)/<strong>S=([^/]+)</strong>/(.*)    $1/$3 [E=<strong>STATUS:$
           <code>/home/username/anypath</code>·Î ÀçÀÛ¼ºÇÒ ¼ö
           ÀÖ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteCond   %{<strong>HTTP_HOST</strong>}                 ^www\.<strong>[^.]+</strong>\.host\.com$
 RewriteRule   ^(.+)                        %{HTTP_HOST}$1          [C]
-RewriteRule   ^www\.<strong>([^.]+)</strong>\.host\.com(.*) /home/<strong>$1</strong>$2
-</pre></div>
+RewriteRule   ^www\.<strong>([^.]+)</strong>\.host\.com(.*) /home/<strong>$1</strong>$2</pre></div>
         </dd>
       </dl>
 
@@ -672,11 +634,9 @@ RewriteRule   ^www\.<strong>([^.]+)</strong>\.host\.com(.*) /home/<strong>$1</st
         <dd>
           <p>ÀçÀÛ¼º Á¶°ÇÀ» »ç¿ëÇϸ頵ȴÙ:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteCond   %{REMOTE_HOST}  <strong>!^.+\.ourdomain\.com$</strong>
-RewriteRule   ^(/~.+)         http://www.somewhere.com/$1 [R,L]
-</pre></div>
+RewriteRule   ^(/~.+)         http://www.somewhere.com/$1 [R,L]</pre></div>
         </dd>
       </dl>
 
@@ -704,21 +664,17 @@ RewriteRule   ^(/~.+)         http://www.somewhere.com/$1 [R,L]
           <p>ù¹øÂ° ¹æ¹ýÀº ºü¸£Áö¸¸ À¯¿¬¼ºÀÌ ¶³¾îÁö°í ¿ÏÀüÇÏÁö
           ¾Ê´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteCond   /your/docroot/%{REQUEST_FILENAME} <strong>!-f</strong>
-RewriteRule   ^(.+)                             http://<strong>webserverB</strong>.dom/$1
-</pre></div>
+RewriteRule   ^(.+)                             http://<strong>webserverB</strong>.dom/$1</pre></div>
 
           <p>ÀÌ ¹æ¹ýÀÇ ´ÜÁ¡Àº <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> ¾È¿¡ Àִ ÆäÀÌÁö¸¸
           °¡´ÉÇϴٴ Á¡ÀÌ´Ù. (¿¹¸¦ µé¾î È¨µð·ºÅ丮 µîÀ» À§ÇØ)
           Á¶°ÇÀ» Ãß°¡ÇÒ ¼ö ÀÖÁö¸¸, ´õ ÁÁÀº ¹æ¹ýÀÌ ÀÖ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteCond   %{REQUEST_URI} <strong>!-U</strong>
-RewriteRule   ^(.+)          http://<strong>webserverB</strong>.dom/$1
-</pre></div>
+RewriteRule   ^(.+)          http://<strong>webserverB</strong>.dom/$1</pre></div>
 
           <p><code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>ÀÇ URL Àü¹æÂüÁ¶(look-ahead)¸¦
           »ç¿ëÇÑ´Ù. ±×·¡¼­ ¸ðµç URL¿¡ µ¿ÀÛÇÏ°í ¾ÈÀüÇÏ´Ù. ±×·¯³ª
@@ -757,17 +713,14 @@ RewriteRule   ^(.+)          http://<strong>webserverB</strong>.dom/$1
           ³¡ºÎºÐ¿¡ »ç¿ëÇØ¾ß ÇÑ´Ù) »õ·Î¿î URL scheme
           <code>xredirect:</code>¸¦ µµÀÔÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteRule ^xredirect:(.+) /path/to/nph-xredirect.cgi/$1 \
-            [T=application/x-httpd-cgi,L]
-</pre></div>
+<div class="example"><pre>RewriteRule ^xredirect:(.+) /path/to/nph-xredirect.cgi/$1 \
+            [T=application/x-httpd-cgi,L]</pre></div>
 
           <p>±×·¯¸é <code>xredirect:</code>·Î ½ÃÀÛÇϴ ¸ðµç URLÀº
           <code>nph-xredirect.cgi</code> ÇÁ·Î±×·¥À» ÅëÇϰԠµÈ´Ù.
           ÇÁ·Î±×·¥Àº ´ÙÀ½°ú °°´Ù:</p>
 
-<div class="example"><pre>
-#!/path/to/perl
+<div class="example"><pre>#!/path/to/perl
 ##
 ##  nph-xredirect.cgi -- NPH/CGI script for extended redirects
 ##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved.
@@ -791,17 +744,14 @@ print "The document has moved &lt;a HREF=\"$url\"&gt;here&lt;/a&gt;.&lt;p&gt;\n"
 print "&lt;/body&gt;\n";
 print "&lt;/html&gt;\n";
 
-##EOF##
-</pre></div>
+##EOF##</pre></div>
 
           <p>±×·¯¸é <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>°¡ Á÷Á¢ ¹ÞÁö¸øÇÏ´Â
           ¸ðµç URL schemeÀ¸·Î ¸®´ÙÀÌ·º¼ÇÇÒ ¼ö ÀÖ´Ù. ¿¹¸¦ µé¾î,
           ´ÙÀ½°ú °°ÀÌ <code>news:newsgroup</code>À¸·Î ¸®´ÙÀÌ·º¼ÇÇÒ
           ¼ö ÀÖ´Ù</p>
 
-<div class="example"><pre>
-RewriteRule ^anyurl  xredirect:news:newsgroup
-</pre></div>
+<div class="example"><pre>RewriteRule ^anyurl  xredirect:news:newsgroup</pre></div>
 
           <div class="note">ÁÖÀÇ: À§ÀǠƯº°ÇÑ "Åë°ú" ±ÔÄ¢À» »ç¿ëÇÏ¿©
           <code>xredirect:</code>¸¦ ¸¶Áö¸·¿¡ È®ÀåÇØ¾ß Çϱ⶧¹®¿¡
@@ -838,15 +788,12 @@ RewriteRule ^anyurl  xredirect:news:newsgroup
           »ç¿ëÇÏ¿© À§Ä¡¸¦ ÃßÁ¤ÇÒ ¼ö ÀÖ´Ù. º¹ÀâÈ÷ ¿«ÀΠ±ÔÄ¢¿¡¼­
           ÃÖ»óÀ§ µµ¸ÞÀÎÀ» Áß°è¸ÊÀǠ۷Π»ç¿ëÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteMap    multiplex                txt:/path/to/map.cxan
 RewriteRule   ^/CxAN/(.*)              %{REMOTE_HOST}::$1                 [C]
-RewriteRule   ^.+\.<strong>([a-zA-Z]+)</strong>::(.*)$  ${multiplex:<strong>$1</strong>|ftp.default.dom}$2  [R,L]
-</pre></div>
+RewriteRule   ^.+\.<strong>([a-zA-Z]+)</strong>::(.*)$  ${multiplex:<strong>$1</strong>|ftp.default.dom}$2  [R,L]</pre></div>
 
-<div class="example"><pre>
-##
+<div class="example"><pre>##
 ##  map.cxan -- Multiplexing Map for CxAN
 ##
 
@@ -854,8 +801,7 @@ de        ftp://ftp.cxan.de/CxAN/
 uk        ftp://ftp.cxan.uk/CxAN/
 com       ftp://ftp.cxan.com/CxAN/
  :
-##EOF##
-</pre></div>
+##EOF##</pre></div>
         </dd>
       </dl>
 
@@ -884,13 +830,11 @@ com       ftp://ftp.cxan.com/CxAN/
           <code>=STRING</code>À» »ç¿ëÇÏ¿© ½Ã°£¿¡ µû¶ó ¸®´ÙÀÌ·º¼ÇÇÒ
           ¼ö ÀÖ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteCond   %{TIME_HOUR}%{TIME_MIN} &gt;0700
 RewriteCond   %{TIME_HOUR}%{TIME_MIN} &lt;1900
 RewriteRule   ^foo\.html$             foo.day.html
-RewriteRule   ^foo\.html$             foo.night.html
-</pre></div>
+RewriteRule   ^foo\.html$             foo.night.html</pre></div>
 
           <p>URL <code>foo.html</code>À» ¿äûÇϸé
           <code>07:00-19:00</code> µ¿¾È <code>foo.day.html</code>
@@ -925,8 +869,7 @@ RewriteRule   ^foo\.html$             foo.night.html
           ¾øÀ¸¸é URLÀ» ¿ø·¡ »óÅ·ΠÀçÀÛ¼ºÇÑ´Ù.</p>
 
 
-<div class="example"><pre>
-#   ¹®¼­.html ÀÌ ¾ø°í
+<div class="example"><pre>#   ¹®¼­.html ÀÌ ¾ø°í
 #   ¹®¼­.phtml ¸¸ Àִ °æ¿ì
 #   ¹®¼­.html À» ¹®¼­.phtml ·Î
 #   ÀçÀÛ¼ºÇϴ ¿ªÈ£È¯ ±ÔÄ¢
@@ -939,8 +882,7 @@ RewriteCond   %{REQUEST_FILENAME}.phtml -f
 RewriteRule   ^(.*)$ $1.phtml                   [S=1]
 #   ¾Æ´Ï¸é ¾Õ¿¡¼­ Ã£Àº ±âº»À̸§À» µÇµ¹¸°´Ù
 RewriteCond   %{ENV:WasHTML}            ^yes$
-RewriteRule   ^(.*)$ $1.html
-</pre></div>
+RewriteRule   ^(.*)$ $1.html</pre></div>
         </dd>
       </dl>
 
@@ -972,11 +914,9 @@ RewriteRule   ^(.*)$ $1.html
           <p>´ÙÀ½ ±ÔÄ¢À¸·Î ÀÌÀü URLÀ» ³»ºÎÀûÀ¸·Î »õ·Î¿î URL·Î
           ÀçÀÛ¼ºÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
-RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html
-</pre></div>
+RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html</pre></div>
         </dd>
       </dl>
 
@@ -1003,11 +943,9 @@ RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html
           <p>»õ·Î¿î URL·Î HTTP ¸®´ÙÀÌ·º¼ÇÇÏ´Ù. ±×·¯¸é ºê¶ó¿ìÀú°¡
           »õ·Î¿î URL¸¦ º¸ÀÌ°í º¯°æ»ç½ÇÀ» »ç¿ëÀÚ°¡ ¾Ë°ÔµÈ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
-RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html  [<strong>R</strong>]
-</pre></div>
+RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html  [<strong>R</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -1042,16 +980,14 @@ RewriteRule    ^<strong>foo</strong>\.html$  <strong>bar</strong>.html  [<strong
           <code>foo.32.html</code> ÆäÀÌÁö¸¦ ¹Þ´Â´Ù. ¾Æ·¡ ±ÔÄ¢ÀÌ
           ÀÌ ÀÛ¾÷À» ÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteCond %{HTTP_USER_AGENT}  ^<strong>Mozilla/3</strong>.*
+<div class="example"><pre>RewriteCond %{HTTP_USER_AGENT}  ^<strong>Mozilla/3</strong>.*
 RewriteRule ^foo\.html$         foo.<strong>NS</strong>.html          [<strong>L</strong>]
 
 RewriteCond %{HTTP_USER_AGENT}  ^<strong>Lynx/</strong>.*         [OR]
 RewriteCond %{HTTP_USER_AGENT}  ^<strong>Mozilla/[12]</strong>.*
 RewriteRule ^foo\.html$         foo.<strong>20</strong>.html          [<strong>L</strong>]
 
-RewriteRule ^foo\.html$         foo.<strong>32</strong>.html          [<strong>L</strong>]
-</pre></div>
+RewriteRule ^foo\.html$         foo.<strong>32</strong>.html          [<strong>L</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -1084,17 +1020,13 @@ RewriteRule ^foo\.html$         foo.<strong>32</strong>.html          [<strong>L
           <code>[P]</code>) »ç¿ëÇÏ¿© ¿ÜºÎ À¥ÆäÀÌÁö È¤Àº ¿ÜºÎ
           À¥°ø°£ Àüü¸¦ ¿ì¸® À̸§°ø°£À¸·Î ´ëÀÀÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
-RewriteRule    ^<strong>hotsheet/</strong>(.*)$  <strong>http://www.tstimpreso.com/hotsheet/</strong>$1  [<strong>P</strong>]
-</pre></div>
+RewriteRule    ^<strong>hotsheet/</strong>(.*)$  <strong>http://www.tstimpreso.com/hotsheet/</strong>$1  [<strong>P</strong>]</pre></div>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
-RewriteRule    ^<strong>usa-news\.html</strong>$   <strong>http://www.quux-corp.com/news/index.html</strong>  [<strong>P</strong>]
-</pre></div>
+RewriteRule    ^<strong>usa-news\.html</strong>$   <strong>http://www.quux-corp.com/news/index.html</strong>  [<strong>P</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -1112,11 +1044,9 @@ RewriteRule    ^<strong>usa-news\.html</strong>$   <strong>http://www.quux-corp.
         <dt>ÇØ°áÃ¥:</dt>
 
         <dd>
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteCond   /mirror/of/remotesite/$1           -U
-RewriteRule   ^http://www\.remotesite\.com/(.*)$ /mirror/of/remotesite/$1
-</pre></div>
+RewriteRule   ^http://www\.remotesite\.com/(.*)$ /mirror/of/remotesite/$1</pre></div>
         </dd>
       </dl>
 
@@ -1153,12 +1083,10 @@ RewriteRule   ^http://www\.remotesite\.com/(.*)$ /mirror/of/remotesite/$1
           proxy throughput ±â´ÉÀ» ÅëÇØ ¿äûÇÏ´Â
           <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> ±ÔÄ¢À» ÀÛ¼ºÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteRule ^/~([^/]+)/?(.*)          /home/$1/.www/$2
+<div class="example"><pre>RewriteRule ^/~([^/]+)/?(.*)          /home/$1/.www/$2
 RewriteCond %{REQUEST_FILENAME}       <strong>!-f</strong>
 RewriteCond %{REQUEST_FILENAME}       <strong>!-d</strong>
-RewriteRule ^/home/([^/]+)/.www/?(.*) http://<strong>www2</strong>.quux-corp.dom/~$1/pub/$2 [<strong>P</strong>]
-</pre></div>
+RewriteRule ^/home/([^/]+)/.www/?(.*) http://<strong>www2</strong>.quux-corp.dom/~$1/pub/$2 [<strong>P</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -1193,26 +1121,22 @@ RewriteRule ^/home/([^/]+)/.www/?(.*) http://<strong>www2</strong>.quux-corp.dom
               °°ÀÌ DNS A(address) ·¹Äڵ忡
               <code>www[0-9].foo.com</code>À» ¼³Á¤ÇÑ´Ù.</p>
 
-<div class="example"><pre>
-www0   IN  A       1.2.3.1
+<div class="example"><pre>www0   IN  A       1.2.3.1
 www1   IN  A       1.2.3.2
 www2   IN  A       1.2.3.3
 www3   IN  A       1.2.3.4
 www4   IN  A       1.2.3.5
-www5   IN  A       1.2.3.6
-</pre></div>
+www5   IN  A       1.2.3.6</pre></div>
 
               <p>±×¸®°í ´ÙÀ½ Ç׸ñÀ» Ãß°¡ÇÑ´Ù:</p>
 
-<div class="example"><pre>
-www    IN  CNAME   www0.foo.com.
+<div class="example"><pre>www    IN  CNAME   www0.foo.com.
        IN  CNAME   www1.foo.com.
        IN  CNAME   www2.foo.com.
        IN  CNAME   www3.foo.com.
        IN  CNAME   www4.foo.com.
        IN  CNAME   www5.foo.com.
-       IN  CNAME   www6.foo.com.
-</pre></div>
+       IN  CNAME   www6.foo.com.</pre></div>
 
               <p>À߸øµÈ °Íó·³ º¸ÀÌÁö¸¸, ½ÇÁ¦·Î <code>BIND</code>ÀÇ
               ÀǵµµÈ ±â´ÉÀÌ´Ù. ÀÌÁ¦ <code>www.foo.com</code>À»
@@ -1246,9 +1170,7 @@ www    IN  CNAME   www0.foo.com.
               »ç¿ëÇÏ¿© <code>www0.foo.com</code>ÀÌ ½ÇÁ¦
               <code>www.foo.com</code>À» Àü´ãÇϰԠÇÑ´Ù</p>
 
-<div class="example"><pre>
-www    IN  CNAME   www0.foo.com.
-</pre></div>
+<div class="example"><pre>www    IN  CNAME   www0.foo.com.</pre></div>
 
               <p>±×¸®°í <code>www0.foo.com</code>À» ÇÁ·Ï½ÃÀü¿ë
               ¼­¹ö·Î º¯°æÇÑ´Ù. Áï, URLÀ» ¹ÞÀ¸¸é ¼­¹ö´Â ³»ºÎ
@@ -1257,16 +1179,13 @@ www    IN  CNAME   www0.foo.com.
               ·Îµå¹ë·±½Ì ½ºÅ©¸³Æ® <code>lb.pl</code>·Î º¸³»´Â
               ±ÔÄ¢À» ¸¸µç´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteMap    lb      prg:/path/to/lb.pl
-RewriteRule   ^/(.+)$ ${lb:$1}           [P,L]
-</pre></div>
+RewriteRule   ^/(.+)$ ${lb:$1}           [P,L]</pre></div>
 
               <p><code>lb.pl</code>À» ÀÛ¼ºÇÑ´Ù:</p>
 
-<div class="example"><pre>
-#!/path/to/perl
+<div class="example"><pre>#!/path/to/perl
 ##
 ##  lb.pl -- ·Îµå¹ë·±½Ì ½ºÅ©¸³Æ®
 ##
@@ -1285,8 +1204,7 @@ while (&lt;STDIN&gt;) {
     print "http://$server/$_";
 }
 
-##EOF##
-</pre></div>
+##EOF##</pre></div>
 
               <div class="note">¸¶Áö¸· ÁÖÀÇ: ¿Ö ÀÌ ¹æ¹ýÀÌ À¯¿ëÇѰ¡?
               <code>www0.foo.com</code>¿¡ ºÎ´ãÀÌ °¡Áö¾Ê´Â°¡?
@@ -1332,10 +1250,8 @@ while (&lt;STDIN&gt;) {
           <code>/~user/foo/bar.scgi/</code> Çü½ÄÀÇ URLÀ»
           ¿øÇϱ⶧¹®ÀÌ´Ù. ´ÙÀ½ ±ÔÄ¢ÀÌ ¹®Á¦¸¦ ÇذáÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteRule ^/[uge]/<strong>([^/]+)</strong>/\.www/(.+)\.scgi(.*) ...
-... /internal/cgi/user/cgiwrap/~<strong>$1</strong>/$2.scgi$3  [NS,<strong>T=application/x-http-cgi</strong>]
-</pre></div>
+<div class="example"><pre>RewriteRule ^/[uge]/<strong>([^/]+)</strong>/\.www/(.+)\.scgi(.*) ...
+... /internal/cgi/user/cgiwrap/~<strong>$1</strong>/$2.scgi$3  [NS,<strong>T=application/x-http-cgi</strong>]</pre></div>
 
           <p>ÀÌÁ¦ ´Ù¸¥ ¸ÚÁø ÇÁ·Î±×·¥, (URL ÇÏÀ§Æ®¸®¿¡ ´ëÇÑ
           <code>access.log</code>¸¦ Ãâ·ÂÇÏ´Â) <code>wwwlog</code>¿Í
@@ -1346,9 +1262,7 @@ RewriteRule ^/[uge]/<strong>([^/]+)</strong>/\.www/(.+)\.scgi(.*) ...
           <code>/u/user/foo/</code>¿¡ ´ëÇØ <code>swwidx</code>
           ÇÁ·Î±×·¥À» ½ÇÇàÇѴٸ頴ÙÀ½°ú °°Àº ¸µÅ©¸¦ »ç¿ëÇÑ´Ù</p>
 
-<div class="example"><pre>
-/internal/cgi/user/swwidx?i=/u/user/foo/
-</pre></div>
+<div class="example"><pre>/internal/cgi/user/swwidx?i=/u/user/foo/</pre></div>
 
           <p>±ò²ûÇÏÁö ¾Ê´Ù. ¸µÅ©¿¡ ¿µ¿ªÀÇ À§Ä¡<strong>¿Í</strong>
           CGI À§Ä¡¸¦ <strong>¸ðµÎ</strong> Àû¾î¾ß Çϱ⶧¹®ÀÌ´Ù.
@@ -1362,24 +1276,18 @@ RewriteRule ^/[uge]/<strong>([^/]+)</strong>/\.www/(.+)\.scgi(.*) ...
           <p>ÇØ°áÃ¥Àº ÀÚµ¿À¸·Î ÀûÀýÇÑ CGI¸¦ ½ÇÇàÇϴ »õ·Î¿î
           Æ¯º°ÇÑ URL Çü½ÄÀ» ¸¸µå´Â °ÍÀÌ´Ù. ´ÙÀ½°ú °°ÀÌ ¼³Á¤ÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteRule   ^/([uge])/([^/]+)(/?.*)/\*  /internal/cgi/user/wwwidx?i=/$1/$2$3/
-RewriteRule   ^/([uge])/([^/]+)(/?.*):log /internal/cgi/user/wwwlog?f=/$1/$2$3
-</pre></div>
+<div class="example"><pre>RewriteRule   ^/([uge])/([^/]+)(/?.*)/\*  /internal/cgi/user/wwwidx?i=/$1/$2$3/
+RewriteRule   ^/([uge])/([^/]+)(/?.*):log /internal/cgi/user/wwwlog?f=/$1/$2$3</pre></div>
 
           <p>ÀÌÁ¦ <code>/u/user/foo/</code>À» °Ë»öÇϴ ¸µÅ©´Â
           ´ÙÀ½°ú °°´Ù</p>
 
-<div class="example"><pre>
-HREF="*"
-/u/user/foo/* (???)
-</pre></div>
+<div class="example"><pre>HREF="*"
+/u/user/foo/* (???)</pre></div>
 
           <p>³»ºÎÀûÀ¸·Î ´ÙÀ½°ú °°ÀÌ ÀÚµ¿º¯È¯µÈ´Ù</p>
 
-<div class="example"><pre>
-/internal/cgi/user/wwwidx?i=/u/user/foo/
-</pre></div>
+<div class="example"><pre>/internal/cgi/user/wwwidx?i=/u/user/foo/</pre></div>
 
           <p>°°Àº ¹æ¹ýÀ¸·Î ¸µÅ© µÚ¿¡ <code>:log</code>¸¦ »ç¿ëÇÏ¿©
           Á¢±Ù ·Î±× CGI ÇÁ·Î±×·¥À» ½ÇÇàÇÒ ¼ö ÀÖ´Ù.</p>
@@ -1409,11 +1317,9 @@ HREF="*"
           <code>/~quux/foo.html</code>¸¦ ¿äûÇϸ頳»ºÎÀûÀ¸·Î
           <code>/~quux/foo.cgi</code>¸¦ ½ÇÇàÇϰԠµÈ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine  on
+<div class="example"><pre>RewriteEngine  on
 RewriteBase    /~quux/
-RewriteRule    ^foo\.<strong>html</strong>$  foo.<strong>cgi</strong>  [T=<strong>application/x-httpd-cgi</strong>]
-</pre></div>
+RewriteRule    ^foo\.<strong>html</strong>$  foo.<strong>cgi</strong>  [T=<strong>application/x-httpd-cgi</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -1441,10 +1347,8 @@ RewriteRule    ^foo\.<strong>html</strong>$  foo.<strong>cgi</strong>  [T=<stron
         <dd>
           ´ÙÀ½ ±ÔÄ¢À» »ç¿ëÇÑ´Ù:
 
-<div class="example"><pre>
-RewriteCond %{REQUEST_FILENAME}   <strong>!-s</strong>
-RewriteRule ^page\.<strong>html</strong>$          page.<strong>cgi</strong>   [T=application/x-httpd-cgi,L]
-</pre></div>
+<div class="example"><pre>RewriteCond %{REQUEST_FILENAME}   <strong>!-s</strong>
+RewriteRule ^page\.<strong>html</strong>$          page.<strong>cgi</strong>   [T=application/x-httpd-cgi,L]</pre></div>
 
           <p>¿©±â¼­ <code>page.html</code>¸¦ ¿äûÇÒ¶§
           <code>page.html</code>ÀÌ ¾ø°Å³ª ÆÄÀÏÅ©±â°¡ 0ÀΠ°æ¿ì
@@ -1482,27 +1386,20 @@ RewriteRule ^page\.<strong>html</strong>$          page.<strong>cgi</strong>   [
           <code>:refresh</code>¸¦ Ãß°¡Çϱ⸸ ÇÏ¸é ÆÄÀϽýºÅÛ¿¡¼­
           ¼öÁ¤µÉ ¶§¸¶´Ù »õ·Î °íħÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteRule   ^(/[uge]/[^/]+/?.*):refresh  /internal/cgi/apache/nph-refresh?f=$1
-</pre></div>
+<div class="example"><pre>RewriteRule   ^(/[uge]/[^/]+/?.*):refresh  /internal/cgi/apache/nph-refresh?f=$1</pre></div>
 
           <p>ÀÌÁ¦ ´ÙÀ½ URL¿¡ Á¢±ÙÇϸé</p>
 
-<div class="example"><pre>
-/u/foo/bar/page.html:refresh
-</pre></div>
+<div class="example"><pre>/u/foo/bar/page.html:refresh</pre></div>
 
           <p>´ÙÀ½ URLÀ» ³»ºÎÀûÀ¸·Î ºÎ¸¥´Ù</p>
 
-<div class="example"><pre>
-/internal/cgi/apache/nph-refresh?f=/u/foo/bar/page.html
-</pre></div>
+<div class="example"><pre>/internal/cgi/apache/nph-refresh?f=/u/foo/bar/page.html</pre></div>
 
           <p>ÀÌÁ¦ NPH-CGI ½ºÅ©¸³Æ®¸¸ ³²¾Ò´Ù. º¸Åë "µ¶ÀÚ¿¡°Ô
           ¿¬½ÀÀ¸·Î ³²°ÜµÒ"À̶ó°í ¸»ÇÏÁö¸¸ ;-) ³ª´Â À̰͵µ Á¦°øÇÑ´Ù.</p>
 
-<div class="example"><pre>
-#!/sw/bin/perl
+<div class="example"><pre>#!/sw/bin/perl
 ##
 ##  nph-refresh -- NPH/CGI script for auto refreshing pages
 ##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved.
@@ -1602,8 +1499,7 @@ for ($n = 0; $n &amp;lt; $QS_n; $n++) {
 
 exit(0);
 
-##EOF##
-</pre></div>
+##EOF##</pre></div>
         </dd>
       </dl>
 
@@ -1629,18 +1525,15 @@ exit(0);
           ±â´ÉÀ» (Ç÷¡±× <code>[P]</code>) »ç¿ëÇÏ¿© ¿ÜºÎ À¥ÆäÀÌÁö
           È¤Àº Àüü ¿ÜºÎ À¥¿µ¿ªÀ» ¿ì¸®ÀÇ À̸§°ø°£¿¡ ´ëÀÀÇÑ´Ù:</p>
 
-<div class="example"><pre>
-##
+<div class="example"><pre>##
 ##  vhost.map
 ##
 www.vhost1.dom:80  /path/to/docroot/vhost1
 www.vhost2.dom:80  /path/to/docroot/vhost2
      :
-www.vhostN.dom:80  /path/to/docroot/vhostN
-</pre></div>
+www.vhostN.dom:80  /path/to/docroot/vhostN</pre></div>
 
-<div class="example"><pre>
-##
+<div class="example"><pre>##
 ##  httpd.conf
 ##
     :
@@ -1686,8 +1579,7 @@ RewriteCond   ${vhost:%1}  ^(/.*)$
 #   5. ¸¶Áö¸·À¸·Î URLÀ» ¹®¼­ À§Ä¡·Î ´ëÀÀÇϰí
 #      ·Î±×¿¡ ³²±â±âÀ§ÇØ °¡»óÈ£½ºÆ®¸¦ ±â¾ïÇØ µÐ´Ù
 RewriteRule   ^/(.*)$   %1/$1  [E=VHOST:${lowercase:%{HTTP_HOST}}]
-    :
-</pre></div>
+    :</pre></div>
         </dd>
       </dl>
 
@@ -1723,11 +1615,9 @@ RewriteRule   ^/(.*)$   %1/$1  [E=VHOST:${lowercase:%{HTTP_HOST}}]
           ¸·´Â °ÍÀ¸·Î´Â ºÒÃæºÐÇϸç, ±× È£½ºÆ®ÀÇ »ç¿ëÀÚµµ ¸·¾Æ¹ö¸®°Ô
           µÈ´Ù. User-Agent HTTP Çì´õ Á¤º¸µµ ºñ±³ÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteCond %{HTTP_USER_AGENT}   ^<strong>NameOfBadRobot</strong>.*
+<div class="example"><pre>RewriteCond %{HTTP_USER_AGENT}   ^<strong>NameOfBadRobot</strong>.*
 RewriteCond %{REMOTE_ADDR}       ^<strong>123\.45\.67\.[8-9]</strong>$
-RewriteRule ^<strong>/~quux/foo/arc/</strong>.+   -   [<strong>F</strong>]
-</pre></div>
+RewriteRule ^<strong>/~quux/foo/arc/</strong>.+   -   [<strong>F</strong>]</pre></div>
         </dd>
       </dl>
 
@@ -1753,17 +1643,13 @@ RewriteRule ^<strong>/~quux/foo/arc/</strong>.+   -   [<strong>F</strong>]
           <p>±×¸²À» 100% º¸È£ÇÒ ¼ö´Â ¾øÁö¸¸, ÃÖ¼ÒÇÑ ºê¶ó¿ìÀú°¡
           HTTP Referer Çì´õ¸¦ º¸³»´Â °æ¿ì Á¦ÇÑÇÒ ¼ö ÀÖ´Ù.</p>
 
-<div class="example"><pre>
-RewriteCond %{HTTP_REFERER} <strong>!^$</strong>
+<div class="example"><pre>RewriteCond %{HTTP_REFERER} <strong>!^$</strong>
 RewriteCond %{HTTP_REFERER} !^http://www.quux-corp.de/~quux/.*$ [NC]
-RewriteRule <strong>.*\.gif$</strong>        -                                    [F]
-</pre></div>
+RewriteRule <strong>.*\.gif$</strong>        -                                    [F]</pre></div>
 
-<div class="example"><pre>
-RewriteCond %{HTTP_REFERER}         !^$
+<div class="example"><pre>RewriteCond %{HTTP_REFERER}         !^$
 RewriteCond %{HTTP_REFERER}         !.*/foo-with-gif\.html$
-RewriteRule <strong>^inlined-in-foo\.gif$</strong>   -                        [F]
-</pre></div>
+RewriteRule <strong>^inlined-in-foo\.gif$</strong>   -                        [F]</pre></div>
         </dd>
       </dl>
 
@@ -1786,28 +1672,23 @@ RewriteRule <strong>^inlined-in-foo\.gif$</strong>   -                        [F
         <dd>
           <p>¾ÆÆÄÄ¡ &gt;= 1.3b6¿¡¼­:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteMap    hosts-deny  txt:/path/to/hosts.deny
 RewriteCond   ${hosts-deny:%{REMOTE_HOST}|NOT-FOUND} !=NOT-FOUND [OR]
 RewriteCond   ${hosts-deny:%{REMOTE_ADDR}|NOT-FOUND} !=NOT-FOUND
-RewriteRule   ^/.*  -  [F]
-</pre></div>
+RewriteRule   ^/.*  -  [F]</pre></div>
 
           <p>¾ÆÆÄÄ¡ &lt;= 1.3b6¿¡¼­:</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteMap    hosts-deny  txt:/path/to/hosts.deny
 RewriteRule   ^/(.*)$ ${hosts-deny:%{REMOTE_HOST}|NOT-FOUND}/$1
 RewriteRule   !^NOT-FOUND/.* - [F]
 RewriteRule   ^NOT-FOUND/(.*)$ ${hosts-deny:%{REMOTE_ADDR}|NOT-FOUND}/$1
 RewriteRule   !^NOT-FOUND/.* - [F]
-RewriteRule   ^NOT-FOUND/(.*)$ /$1
-</pre></div>
+RewriteRule   ^NOT-FOUND/(.*)$ /$1</pre></div>
 
-<div class="example"><pre>
-##
+<div class="example"><pre>##
 ##  hosts.deny
 ##
 ##  ÁÖÀÇ! À̰ÍÀº ¸ñ·Ïó·³ º¸ÀÌÁö¸¸ ¸ñ·ÏÀÌ ¾Æ´Ï¶ó ¸ÊÀÌ´Ù.
@@ -1817,8 +1698,7 @@ RewriteRule   ^NOT-FOUND/(.*)$ /$1
 
 193.102.180.41 -
 bsdti1.sdm.de  -
-192.76.162.40  -
-</pre></div>
+192.76.162.40  -</pre></div>
         </dd>
       </dl>
 
@@ -1845,17 +1725,13 @@ bsdti1.sdm.de  -
           <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code> <em>ÀÌÀü¿¡</em> ºÒ¸°´Ù.
           ÀÌÁ¦ ´ÙÀ½°ú °°À̠ƯÁ¤ È£½ºÆ®¸¦ °ÅºÎÇϵµ·Ï ¼³Á¤ÇÑ´Ù...</p>
 
-<div class="example"><pre>
-RewriteCond %{REMOTE_HOST} <strong>^badhost\.mydomain\.com$</strong>
-RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]
-</pre></div>
+<div class="example"><pre>RewriteCond %{REMOTE_HOST} <strong>^badhost\.mydomain\.com$</strong>
+RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]</pre></div>
 
           <p>...±×¸®°í ´ÙÀ½Àº user@host¿¡ µû¶ó °ÅºÎÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST}  <strong>^badguy@badhost\.mydomain\.com$</strong>
-RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]
-</pre></div>
+<div class="example"><pre>RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST}  <strong>^badguy@badhost\.mydomain\.com$</strong>
+RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]</pre></div>
         </dd>
       </dl>
 
@@ -1880,12 +1756,10 @@ RewriteRule !^http://[^/.]\.mydomain.com.*  - [F]
         <dd>
           <p>Ä£±¸¸¸ Á¢±ÙÀÌ °¡´ÉÇϵµ·Ï ÀçÀÛ¼º ±ÔÄ¢µéÀ» »ç¿ëÇÑ´Ù:</p>
 
-<div class="example"><pre>
-RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend1@client1.quux-corp\.com$</strong>
+<div class="example"><pre>RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend1@client1.quux-corp\.com$</strong>
 RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend2</strong>@client2.quux-corp\.com$
 RewriteCond %{REMOTE_IDENT}@%{REMOTE_HOST} <strong>!^friend3</strong>@client3.quux-corp\.com$
-RewriteRule ^/~quux/only-for-friends/      -                                 [F]
-</pre></div>
+RewriteRule ^/~quux/only-for-friends/      -                                 [F]</pre></div>
         </dd>
       </dl>
 
@@ -1908,8 +1782,7 @@ RewriteRule ^/~quux/only-for-friends/      -                                 [F]
         <dd>
           <p>´ÙÀ½°ú °°ÀÌ º¹ÀâÇÑ ±ÔÄ¢À»...</p>
 
-<div class="example"><pre>
-RewriteMap  deflector txt:/path/to/deflector.map
+<div class="example"><pre>RewriteMap  deflector txt:/path/to/deflector.map
 
 RewriteCond %{HTTP_REFERER} !=""
 RewriteCond ${deflector:%{HTTP_REFERER}} ^-$
@@ -1917,20 +1790,17 @@ RewriteRule ^.* %{HTTP_REFERER} [R,L]
 
 RewriteCond %{HTTP_REFERER} !=""
 RewriteCond ${deflector:%{HTTP_REFERER}|NOT-FOUND} !=NOT-FOUND
-RewriteRule ^.* ${deflector:%{HTTP_REFERER}} [R,L]
-</pre></div>
+RewriteRule ^.* ${deflector:%{HTTP_REFERER}} [R,L]</pre></div>
 
           <p>... ÀçÀÛ¼º ¸Ê°ú °°ÀÌ »ç¿ëÇÑ´Ù:</p>
 
-<div class="example"><pre>
-##
+<div class="example"><pre>##
 ##  deflector.map
 ##
 
 http://www.badguys.com/bad/index.html    -
 http://www.badguys.com/bad/index2.html   -
-http://www.badguys.com/bad/index3.html   http://somewhere.com/
-</pre></div>
+http://www.badguys.com/bad/index3.html   http://somewhere.com/</pre></div>
 
           <p>±×·¯¸é ¿äûÀ» ÀÚµ¿À¸·Î (¸Ê¿¡¼­ °ªÀ¸·Î "<code>-</code>"¸¦
           »ç¿ëÇÑ °æ¿ì) ÂüÁ¶ÆäÀÌÁö³ª (URLÀÌ ¸Ê¿¡ Àִ °æ¿ì µÎ¹øÂ°
@@ -1967,14 +1837,12 @@ http://www.badguys.com/bad/index3.html   http://somewhere.com/
           <code>STDIN</code>¿¡¼­ ¿äûÇÑ URLÀ» ¹Þ°í, (°°Àº ¼ø¼­·Î!)
           °á°ú (º¸Åë ÀçÀÛ¼ºµÈ) URLÀ» <code>STDOUT</code>¿¡ Ãâ·ÂÇÑ´Ù.</p>
 
-<div class="example"><pre>
-RewriteEngine on
+<div class="example"><pre>RewriteEngine on
 RewriteMap    quux-map       <strong>prg:</strong>/path/to/map.quux.pl
 RewriteRule   ^/~quux/(.*)$  /~quux/<strong>${quux-map:$1}</strong>
 </pre></div>
 
-<div class="example"><pre>
-#!/path/to/perl
+<div class="example"><pre>#!/path/to/perl
 
 #   ¾ÆÆÄÄ¡ ¼­¹ö°¡ ¸ØÃßÁö ¾Êµµ·Ï
 #   ÀÔÃâ·Â ¹öÆÛ¸¦ »ç¿ëÇÏÁö ¾Ê´Â´Ù
@@ -1985,8 +1853,7 @@ $| = 1;
 while (&lt;&gt;) {
     s|^foo/|bar/|;
     print $_;
-}
-</pre></div>
+}</pre></div>
 
           <p>¼³¸íÇϱâÀ§ÇØ ¸ðµç <code>/~quux/foo/...</code> URLÀ»
           <code>/~quux/bar/...</code>·Î ÀçÀÛ¼ºÇϴ ½ºÅ©¸³Æ®¸¦
index b673b69f6011c77032d965266e07d45a565d4d72..d72cb417eca0526a2e96178815f20cab0624a8c4 100644 (file)
@@ -78,8 +78,7 @@
 the Authentication and DBD frameworks. Please note that you need
 to load an authorization module, such as <code class="module"><a href="../mod/mod_authz_user.html">mod_authz_user</a></code>,
 to get it working.</p>
-<div class="example"><pre>
-# mod_dbd configuration
+<div class="example"><pre># mod_dbd configuration
 DBDriver pgsql
 DBDParams "dbname=apacheauth user=apache password=xxxxxx"
 
@@ -101,8 +100,7 @@ DBDExptime 300
   # mod_authn_dbd SQL query to authenticate a user
   AuthDBDUserPWQuery \
     "SELECT password FROM authn WHERE user = %s"
-&lt;/Directory&gt;
-</pre></div>
+&lt;/Directory&gt;</pre></div>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="exposed" id="exposed">Exposing Login Information</a></h2>
@@ -135,10 +133,8 @@ configuration required in some web applications.
     will be passed as a single string parameter when the SQL query is
     executed.  It may be referenced within the query statement using
     a <code>%s</code> format specifier.</p>
-    <div class="example"><h3>Example</h3><pre>
-AuthDBDUserPWQuery \
-  "SELECT password FROM authn WHERE user = %s"
-</pre></div>
+    <div class="example"><h3>Example</h3><pre>AuthDBDUserPWQuery \
+  "SELECT password FROM authn WHERE user = %s"</pre></div>
     <p>The first column value of the first row returned by the query
     statement should be a string containing the encrypted password.
     Subsequent rows will be ignored.  If no rows are returned, the user
@@ -170,10 +166,8 @@ AuthDBDUserPWQuery \
     The user's ID and the realm, in that order, will be passed as string
     parameters when the SQL query is executed.  They may be referenced
     within the query statement using <code>%s</code> format specifiers.</p>
-    <div class="example"><h3>Example</h3><pre>
-AuthDBDUserRealmQuery \
-  "SELECT password FROM authn WHERE user = %s AND realm = %s"
-</pre></div>
+    <div class="example"><h3>Example</h3><pre>AuthDBDUserRealmQuery \
+  "SELECT password FROM authn WHERE user = %s AND realm = %s"</pre></div>
     <p>The first column value of the first row returned by the query
     statement should be a string containing the encrypted password.
     Subsequent rows will be ignored.  If no rows are returned, the user
index d54d0ff16027ff05d4028b7598cf3d930df1eb09..0bacfd31e064d6c4fed87a0800ea3ebc4050a819 100644 (file)
@@ -598,8 +598,7 @@ Require valid-user
     authentication to it is a matter of adding the following
     directives to <em>every</em> <code>.htaccess</code> file
     that gets created in the web</p>
-<div class="example"><pre>
-AuthLDAPURL            "the url"
+<div class="example"><pre>AuthLDAPURL            "the url"
 AuthGroupFile <em>mygroupfile</em>
 Require group <em>mygroupfile</em>
 </pre></div>
@@ -724,16 +723,14 @@ Require group <em>mygroupfile</em>
     <p>If the value begins with exec: the resulting command will be
     executed and the first line returned to standard output by the
     program will be used as the password.</p>
-<div class="example"><pre>
-#Password used as-is
+<div class="example"><pre>#Password used as-is
 AuthLDAPBindPassword secret
 
 #Run /path/to/program to get my password
 AuthLDAPBindPassword exec:/path/to/program
 
 #Run /path/to/otherProgram and provide arguments
-AuthLDAPBindPassword "exec:/path/to/otherProgram argument1"
-</pre></div>
+AuthLDAPBindPassword "exec:/path/to/otherProgram argument1"</pre></div>
 
 
 </div>
index bec0c431b39c1580c820efa90fffbfa90b1779c9..6a43c2b0dba562634870602291c0b36508c5f440 100644 (file)
@@ -648,8 +648,7 @@ connexion</a></h2>
     l'authentification LDAP consiste à ajouter les directives suivantes
     à <em>chaque</em> fichier <code>.htaccess</code> qui sera créé dans
     le site web :</p>
-<div class="example"><pre>
-AuthLDAPURL            "l'url"
+<div class="example"><pre>AuthLDAPURL            "l'url"
 AuthGroupFile <em>mon-fichier-de-groupes</em>
 Require group <em>mon-fichier-de-groupes</em>
 </pre></div>
@@ -793,16 +792,14 @@ serveur HTTP Apache.</td></tr>
     commande correspondante est exécutée, et c'est la première ligne qui
     sera renvoyée par la commande sur la sortie standard qui sera
     utilisée comme mot de passe.</p>
-<div class="example"><pre>
-# Mot de passe spécifié directement
+<div class="example"><pre># Mot de passe spécifié directement
 AuthLDAPBindPassword secret
 
 # Exécution de /path/to/program pour obtenir le mot de passe
 AuthLDAPBindPassword exec:/path/to/program
 
 # Exécution de /path/to/program avec un argument pour obtenir le mot de passe
-AuthLDAPBindPassword "exec:/path/to/otherProgram argument1"
-</pre></div>
+AuthLDAPBindPassword "exec:/path/to/otherProgram argument1"</pre></div>
 
 
 </div>
index 4f147639098cbebbceaa16949207e2f4f4cf2c66..d06513a442d797d77dc93f7dea99136a76464629 100644 (file)
@@ -159,8 +159,7 @@ yaptığı gibi dizin içeriğini listeler.</td></tr>
       <code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code> tarafından son argüman olarak ele
       alınacak ve çözümleme işlemi o noktada duracaktır.</p>
 
-    <div class="example"><pre>
-&lt;form action="" method="get"&gt;
+    <div class="example"><pre>&lt;form action="" method="get"&gt;
   &lt;input type="text" name="P" value="*" /&gt; ile eşleşen
   &lt;select name="C"&gt;
     &lt;option value="N" selected="selected"&gt;isme&lt;/option&gt;
index 149609f2e928fd1cf5d0b62140f16bce411bbb6a..18705ea6c84a63d0d3949360a8637a359a585711 100644 (file)
@@ -1253,8 +1253,7 @@ through</td></tr>
     scheme can be accomplished with <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> as in the
     following example.</p>
 
-    <pre class="prettyprint lang-config">
-RewriteEngine On
+    <pre class="prettyprint lang-config">RewriteEngine On
 
 RewriteCond %{HTTPS} =off
 RewriteRule . - [E=protocol:http]
@@ -1263,8 +1262,7 @@ RewriteRule . - [E=protocol:https]
 
 RewriteRule ^/mirror/foo/(.*) %{ENV:protocol}://backend.example.com/$1 [P]
 ProxyPassReverse  /mirror/foo/ http://backend.example.com/
-ProxyPassReverse  /mirror/foo/ https://backend.example.com/
-    </pre>
+ProxyPassReverse  /mirror/foo/ https://backend.example.com/</pre>
 
 
 </div>
index 379acf62dcf389c3b3a8a3c87a2b1a3c7417c089..c33f863f6b74b34505b72a1e7ab580e8e96b0dc8 100644 (file)
@@ -1406,8 +1406,7 @@ l'espace d'URLs du serveur local</td></tr>
     protocole peut être effectuée à l'aide de
     <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> comme dans l'exemple suivant :</p>
 
-    <pre class="prettyprint lang-config">
-RewriteEngine On
+    <pre class="prettyprint lang-config">RewriteEngine On
 
 RewriteCond %{HTTPS} =off
 RewriteRule . - [E=protocol:http]
@@ -1416,8 +1415,7 @@ RewriteRule . - [E=protocol:https]
 
 RewriteRule ^/mirror/foo/(.*) %{ENV:protocol}://backend.example.com/$1 [P]
 ProxyPassReverse  /mirror/foo/ http://backend.example.com/
-ProxyPassReverse  /mirror/foo/ https://backend.example.com/
-    </pre>
+ProxyPassReverse  /mirror/foo/ https://backend.example.com/</pre>
 
 
 
index b61bf23e43a224cdeba85c44ebd89a920d740c94..c391cbae18d03351f6920e6696884589289034c0 100644 (file)
 <h2><a name="rpacetstruct" id="rpacetstruct">Request Packet Structure</a></h2>
     <p>For messages from the server to the container of type
     <em>Forward Request</em>:</p>
-    <div class="example"><pre>
-AJP13_FORWARD_REQUEST :=
+    <div class="example"><pre>AJP13_FORWARD_REQUEST :=
     prefix_code      (byte) 0x02 = JK_AJP13_FORWARD_REQUEST
     method           (byte)
     protocol         (string)
@@ -356,25 +355,19 @@ AJP13_FORWARD_REQUEST :=
     num_headers      (integer)
     request_headers *(req_header_name req_header_value)
     attributes      *(attribut_name attribute_value)
-    request_terminator (byte) OxFF
-    </pre></div>
+    request_terminator (byte) OxFF</pre></div>
     <p>The <code>request_headers</code> have the following structure:
-    </p><div class="example"><pre>
-req_header_name := 
+    </p><div class="example"><pre>req_header_name := 
     sc_req_header_name | (string)  [see below for how this is parsed]
 
 sc_req_header_name := 0xA0xx (integer)
 
-req_header_value := (string)
-</pre></div>
+req_header_value := (string)</pre></div>
     <p>The <code>attributes</code> are optional and have the following
     structure:</p>
-    <div class="example"><pre>
-attribute_name := sc_a_name | (sc_a_req_attribute string)
+    <div class="example"><pre>attribute_name := sc_a_name | (sc_a_req_attribute string)
 
-attribute_value := (string)
-
-    </pre></div>
+attribute_value := (string)</pre></div>
     <p>Not that the all-important header is <code>content-length</code>,
     because it determines whether or not the container looks for another
     packet immediately.</p>
@@ -527,8 +520,7 @@ attribute_value := (string)
 <div class="section">
 <h2><a name="resppacketstruct" id="resppacketstruct">Response Packet Structure</a></h2>
     <p>for messages which the container can send back to the server.</p>
-    <div class="example"><pre>
-AJP13_SEND_BODY_CHUNK :=
+    <div class="example"><pre>AJP13_SEND_BODY_CHUNK :=
   prefix_code   3
   chunk_length  (integer)
   chunk        *(byte)
@@ -555,8 +547,7 @@ AJP13_END_RESPONSE :=
 
 AJP13_GET_BODY_CHUNK :=
   prefix_code       6
-  requested_length  (integer)
-    </pre></div>
+  requested_length  (integer)</pre></div>
   <h3>Details:</h3>
   <h3>Send Body Chunk</h3>
     <p>The chunk is basically binary data, and is sent directly back to the
index 2c2bf0e047e8586bc4ee043e266a2f4ead569b41..828de100285559b12f5b6b4d451669e2bab2da78 100644 (file)
 <h2><a name="rpacetstruct" id="rpacetstruct">リクエストパケット構造</a></h2>
     <p>サーバからコンテナへ送られるメッセージが
     <em>Forward Request</em> 型の場合 :</p>
-    <div class="example"><pre>
-AJP13_FORWARD_REQUEST :=
+    <div class="example"><pre>AJP13_FORWARD_REQUEST :=
     prefix_code      (byte) 0x02 = JK_AJP13_FORWARD_REQUEST
     method           (byte)
     protocol         (string)
@@ -298,24 +297,18 @@ AJP13_FORWARD_REQUEST :=
     num_headers      (integer)
     request_headers *(req_header_name req_header_value)
     attributes      *(attribut_name attribute_value)
-    request_terminator (byte) OxFF
-    </pre></div>
+    request_terminator (byte) OxFF</pre></div>
     <p><code>request_headers</code> は次のような構造になっています :
-    </p><div class="example"><pre>
-req_header_name := 
+    </p><div class="example"><pre>req_header_name := 
     sc_req_header_name | (string)  [see below for how this is parsed]
 
 sc_req_header_name := 0xA0xx (integer)
 
-req_header_value := (string)
-</pre></div>
+req_header_value := (string)</pre></div>
     <p><code>属性</code> はオプションで、次のような構造をしています :</p>
-    <div class="example"><pre>
-attribute_name := sc_a_name | (sc_a_req_attribute string)
+    <div class="example"><pre>attribute_name := sc_a_name | (sc_a_req_attribute string)
 
-attribute_value := (string)
-
-    </pre></div>
+attribute_value := (string)</pre></div>
     <p>もっとも重要なヘッダは <code>content-length</code> だということに
     注意してください。コンテナは次のパケットを探すかどうかを、
     それを見て決めるからです。</p>
@@ -463,8 +456,7 @@ attribute_value := (string)
 <div class="section">
 <h2><a name="resppacketstruct" id="resppacketstruct">レスポンスパケット構造</a></h2>
     <p>コンテナがサーバに送り返すことのできるメッセージ:</p>
-    <div class="example"><pre>
-AJP13_SEND_BODY_CHUNK :=
+    <div class="example"><pre>AJP13_SEND_BODY_CHUNK :=
   prefix_code   3
   chunk_length  (integer)
   chunk        *(byte)
@@ -491,8 +483,7 @@ AJP13_END_RESPONSE :=
 
 AJP13_GET_BODY_CHUNK :=
   prefix_code       6
-  requested_length  (integer)
-    </pre></div>
+  requested_length  (integer)</pre></div>
   <h3>詳細 :</h3>
   <h3>Send Body Chunk</h3>
     <p>チャンクは基本的にはバイナリデータで、ブラウザに直接送られます。</p>
index ddce3a9cf8d4df2f27efbcc06e32365cddf95330..f54a793833850bca4511e900fb231797a0ea0666 100644 (file)
@@ -109,12 +109,10 @@ URLs on the fly</td></tr>
       primarily used to rewrite logical URLs to physical
       pathnames.</p>
 
-<div class="example"><h3>Example</h3><pre>
-SCRIPT_NAME=/sw/lib/w3s/tree/global/u/rse/.www/index.html
+<div class="example"><h3>Example</h3><pre>SCRIPT_NAME=/sw/lib/w3s/tree/global/u/rse/.www/index.html
 SCRIPT_FILENAME=/u/rse/.www/index.html
 SCRIPT_URL=/u/rse/
-SCRIPT_URI=http://en1.engelschall.com/u/rse/
-</pre></div>
+SCRIPT_URI=http://en1.engelschall.com/u/rse/</pre></div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -172,15 +170,13 @@ SCRIPT_URI=http://en1.engelschall.com/u/rse/
     since the resource was not relative to the document root.  This 
     misconfiguration would normally cause the server to look for an "opt"
     directory under the document root.</p>
-<div class="example"><pre>
-DocumentRoot /var/www/example.com
+<div class="example"><pre>DocumentRoot /var/www/example.com
 Alias /myapp /opt/myapp-1.2.3
 &lt;Directory /opt/myapp-1.2.3&gt;
 RewriteEngine On
 RewriteBase /myapp/
 RewriteRule ^index\.html$  welcome.html 
-&lt;/Directory&gt;
-</pre></div>
+&lt;/Directory&gt;</pre></div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -582,12 +578,10 @@ RewriteRule ^index\.html$  welcome.html
           Use this to combine rule conditions with a local OR
           instead of the implicit AND. Typical example: 
 
-<div class="example"><pre>
-RewriteCond %{REMOTE_HOST}  =host1  [OR]
+<div class="example"><pre>RewriteCond %{REMOTE_HOST}  =host1  [OR]
 RewriteCond %{REMOTE_HOST}  =host2  [OR]
 RewriteCond %{REMOTE_HOST}  =host3
-RewriteRule ...some special stuff for any of these hosts...
-</pre></div>
+RewriteRule ...some special stuff for any of these hosts...</pre></div>
 
           Without this flag you would have to write the condition/rule
           pair three times.
@@ -612,15 +606,13 @@ RewriteRule ...some special stuff for any of these hosts...
         ``<code>User-Agent:</code>'' header of the request, you can
         use the following: </p>
 
-<div class="example"><pre>
-RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla
+<div class="example"><pre>RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla
 RewriteRule  ^/$                 /homepage.max.html  [L]
 
 RewriteCond  %{HTTP_USER_AGENT}  ^Lynx
 RewriteRule  ^/$                 /homepage.min.html  [L]
 
-RewriteRule  ^/$                 /homepage.std.html  [L]
-</pre></div>
+RewriteRule  ^/$                 /homepage.std.html  [L]</pre></div>
 
         <p>Explanation: If you use a browser which identifies itself 
        as 'Mozilla' (including Netscape Navigator, Mozilla etc), then you
@@ -854,14 +846,12 @@ Apache 2.0.41 and later</td></tr>
             <em>SubstValue</em></strong>
           </p>
 
-<div class="example"><h3>Example</h3><pre>
-##
+<div class="example"><h3>Example</h3><pre>##
 ##  map.txt -- rewriting map
 ##
 
 Ralf.S.Engelschall    rse   # Bastard Operator From Hell
-Mr.Joe.Average        joe   # Mr. Average
-</pre></div>
+Mr.Joe.Average        joe   # Mr. Average</pre></div>
 
 <div class="example"><p><code>
 RewriteMap real-to-user txt:/path/to/file/map.txt
@@ -886,14 +876,12 @@ RewriteMap real-to-user txt:/path/to/file/map.txt
           else is sent to one of the 'dynamic' pool.</p>
           <p>Example:</p>
 
-<div class="example"><h3>Rewrite map file</h3><pre>
-##
+<div class="example"><h3>Rewrite map file</h3><pre>##
 ##  map.txt -- rewriting map
 ##
 
 static   www1|www2|www3|www4
-dynamic  www5|www6
-</pre></div>
+dynamic  www5|www6</pre></div>
 
 <div class="example"><h3>Configuration directives</h3><p><code>
 RewriteMap servers rnd:/path/to/file/map.txt<br />
@@ -981,14 +969,12 @@ $ httxt2dbm -i mapfile.txt -o mapfile.map
           context that does not have <code class="directive">RewriteEngine</code> set to
           <code>on</code></p>.
 
-<div class="example"><pre>
-#!/usr/bin/perl
+<div class="example"><pre>#!/usr/bin/perl
 $| = 1;
 while (&lt;STDIN&gt;) {
     # ...put here any transformations or lookups...
     print $_;
-}
-</pre></div>
+}</pre></div>
 
           <p>But be very careful:</p>
 
@@ -1470,8 +1456,7 @@ directive.</p>
                                                 (the [R] flag is redundant)
 
 ^/somepath(.*) http://otherhost/otherpath$1 [P] http://otherhost/otherpath/pathinfo
-                                                via internal proxy
-</pre></div>
+                                                via internal proxy</pre></div>
 
       <p><strong>Inside per-directory configuration for
       <code>/somepath</code><br />
@@ -1513,8 +1498,7 @@ directive.</p>
                                                 (the [R] flag is redundant)
 
 ^localpath(.*) http://otherhost/otherpath$1 [P] http://otherhost/otherpath/pathinfo
-                                                via internal proxy
-</pre></div>
+                                                via internal proxy</pre></div>
   
 </div>
 </div>
index 60ab05a266c6ed901b367e6699b8c3684edbf74b..49fc29d1d8da9af44a41a21025361fefdbfe9a01 100644 (file)
@@ -116,12 +116,10 @@ d'Apache</td></tr></table>
       le savoir car le processus de réécriture est principalement
       utilisé pour réécrire des URLs logiques en chemins physiques.</p>
 
-<div class="example"><h3>Exemple</h3><pre>
-SCRIPT_NAME=/sw/lib/w3s/tree/global/u/rse/.www/index.html
+<div class="example"><h3>Exemple</h3><pre>SCRIPT_NAME=/sw/lib/w3s/tree/global/u/rse/.www/index.html
 SCRIPT_FILENAME=/u/rse/.www/index.html
 SCRIPT_URL=/u/rse/
-SCRIPT_URI=http://en1.engelschall.com/u/rse/
-</pre></div>
+SCRIPT_URI=http://en1.engelschall.com/u/rse/</pre></div>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -185,15 +183,13 @@ ressource n'
 de configuration aurait conduit le serveur à rechercher un répertoire
 "opt" à la racine des documents.</p>
 
-<div class="example"><pre>
-DocumentRoot /var/www/example.com
+<div class="example"><pre>DocumentRoot /var/www/example.com
 Alias /myapp /opt/myapp-1.2.3
 &lt;Directory /opt/myapp-1.2.3&gt;
 RewriteEngine On
 RewriteBase /myapp/
 RewriteRule ^index\.html$  welcome.html 
-&lt;/Directory&gt;
-</pre></div>
+&lt;/Directory&gt;</pre></div>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -616,12 +612,10 @@ la r
          Permet de chaîner les conditions de règles avec un OU au
          lieu du AND implicite. Exemple typique :
 
-<div class="example"><pre>
-RewriteCond %{REMOTE_HOST}  ^hote1  [OR]
+<div class="example"><pre>RewriteCond %{REMOTE_HOST}  ^hote1  [OR]
 RewriteCond %{REMOTE_HOST}  ^hote2  [OR]
 RewriteCond %{REMOTE_HOST}  ^hote3
-RewriteRule ...règles concernant tous ces hôtes...
-</pre></div>
+RewriteRule ...règles concernant tous ces hôtes...</pre></div>
 
           Sans ce drapeau, les paires
          condition/règle devraient être écrites trois fois.
@@ -647,15 +641,13 @@ RewriteRule ...r
        l'en-tête ``<code>User-Agent:</code>'' de la requête, vous
        pouvez utiliser ce qui suit : </p>
 
-<div class="example"><pre>
-RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla
+<div class="example"><pre>RewriteCond  %{HTTP_USER_AGENT}  ^Mozilla
 RewriteRule  ^/$                 /homepage.max.html  [L]
 
 RewriteCond  %{HTTP_USER_AGENT}  ^Lynx
 RewriteRule  ^/$                 /homepage.min.html  [L]
 
-RewriteRule  ^/$                 /homepage.std.html  [L]
-</pre></div>
+RewriteRule  ^/$                 /homepage.std.html  [L]</pre></div>
 
         <p>Explications : si vous utilisez un navigateur
        (Netscape Navigator, Mozilla etc) qui s'identifie comme
@@ -917,15 +909,13 @@ bases de donn
             <em>valeur de remplacement</em></strong>
           </p>
 
-<div class="example"><h3>Exemple</h3><pre>
-##
+<div class="example"><h3>Exemple</h3><pre>##
 ##  map.txt -- table de correspondance pour la réécriture
 ##
 
 Ralf.S.Engelschall    rse   # Bastard Operator From Hell
 (traduction à votre convenance)
-Mr.Joe.Average        joe   # Mr. Average
-</pre></div>
+Mr.Joe.Average        joe   # Mr. Average</pre></div>
 
 <div class="example"><p><code>
 RewriteMap real-to-user txt:/chemin/vers/fichier/map.txt
@@ -955,14 +945,12 @@ RewriteMap real-to-user txt:/chemin/vers/fichier/map.txt
          "dynamique".</p>
           <p>Exemple:</p>
 
-<div class="example"><h3>Fichier de correspondances pour la réécriture</h3><pre>
-##
+<div class="example"><h3>Fichier de correspondances pour la réécriture</h3><pre>##
 ##  map.txt -- correspondances pour la réécriture
 ##
 
 static   www1|www2|www3|www4
-dynamic  www5|www6
-</pre></div>
+dynamic  www5|www6</pre></div>
 
 <div class="example"><h3>Directives de configuration</h3><p><code>
 RewriteMap serveurs rnd:/chemin/vers/fichier/map.txt<br />
@@ -1063,14 +1051,12 @@ $ httxt2dbm -i fichier-source.txt -o fichier-dbm.map
         <code class="directive">RewriteEngine</code> n'a pas été définie à
         <code>on</code>.</p>
 
-<div class="example"><pre>
-#!/usr/bin/perl
+<div class="example"><pre>#!/usr/bin/perl
 $| = 1;
 while (&lt;STDIN&gt;) {
     # ...insérer ici le code de transformation ou de recherche...
     print $_;
-}
-</pre></div>
+}</pre></div>
 
           <p>Mais soyez très prudent :</p>
 
@@ -1614,8 +1600,7 @@ utilis
                                                redondant)
 
 ^/chemin(.*) http://autre hôte/autre-chemin$1 [P] http://autre hôte/autre-chemin/infochemin
-                                                via un mandataire interne
-</pre></div>
+                                                via un mandataire interne</pre></div>
 
       <p><strong>Dans une configuration de niveau répertoire pour
       <code>/chemin</code><br />
@@ -1658,8 +1643,7 @@ utilis
                                                redondant)
 
 ^chemin-local(.*) http://autre hôte/autre-chemin$1 [P] http://autre hôte/autre-chemin/infochemin
-                                                via un mandataire interne
-</pre></div>
+                                                via un mandataire interne</pre></div>
   
 </div>
 </div>
index ad5ee1f427dbebe573cb527345631a60d0b2e15f..dddef6552f86f976926ca21687146cdca8781cdd 100644 (file)
@@ -537,16 +537,14 @@ authenticate, i.e. for SSL only the Anonymous Diffie-Hellman ciphers. Next,
 use ciphers using RC4 and RSA. Next include the high, medium and then the low
 security ciphers. Finally <em>pull</em> all SSLv2 and export ciphers to the
 end of the list.</p>
-<div class="example"><pre>
-$ openssl ciphers -v 'ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP'
+<div class="example"><pre>$ openssl ciphers -v 'ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP'
 NULL-SHA                SSLv3 Kx=RSA      Au=RSA  Enc=None      Mac=SHA1
 NULL-MD5                SSLv3 Kx=RSA      Au=RSA  Enc=None      Mac=MD5
 EDH-RSA-DES-CBC3-SHA    SSLv3 Kx=DH       Au=RSA  Enc=3DES(168) Mac=SHA1
 ...                     ...               ...     ...           ...
 EXP-RC4-MD5             SSLv3 Kx=RSA(512) Au=RSA  Enc=RC4(40)   Mac=MD5  export
 EXP-RC2-CBC-MD5         SSLv2 Kx=RSA(512) Au=RSA  Enc=RC2(40)   Mac=MD5  export
-EXP-RC4-MD5             SSLv2 Kx=RSA(512) Au=RSA  Enc=RC4(40)   Mac=MD5  export
-</pre></div>
+EXP-RC4-MD5             SSLv2 Kx=RSA(512) Au=RSA  Enc=RC4(40)   Mac=MD5  export</pre></div>
 <p>The complete list of particular RSA &amp; DH ciphers for SSL is given in <a href="#table2">Table 2</a>.</p>
 <div class="example"><h3>Example</h3><p><code>
 SSLCipherSuite RSA:!EXP:!NULL:+HIGH:+MEDIUM:-LOW
@@ -1585,8 +1583,7 @@ containing any number of access checks.</p>
 The <em>expression</em> must match the following syntax (given as a BNF
 grammar notation):</p>
 <blockquote>
-<pre>
-expr     ::= "<strong>true</strong>" | "<strong>false</strong>"
+<pre>expr     ::= "<strong>true</strong>" | "<strong>false</strong>"
            | "<strong>!</strong>" expr
            | expr "<strong>&amp;&amp;</strong>" expr
            | expr "<strong>||</strong>" expr
@@ -1615,8 +1612,7 @@ word     ::= digit
 digit    ::= [0-9]+
 cstring  ::= "..."
 variable ::= "<strong>%{</strong>" varname "<strong>}</strong>"
-function ::= funcname "<strong>(</strong>" funcargs "<strong>)</strong>"
-</pre>
+function ::= funcname "<strong>(</strong>" funcargs "<strong>)</strong>"</pre>
 </blockquote>
 <p>while for <code>varname</code> any variable from <a href="#table3">Table 3</a> can be used. Finally for
 <code>funcname</code> the following functions are available:</p>
@@ -1649,8 +1645,7 @@ checked, until a match is found.
 </p>
 
 <p><em>Standard CGI/1.0 and Apache variables:</em></p>
-<pre>
-HTTP_USER_AGENT        PATH_INFO             AUTH_TYPE
+<pre>HTTP_USER_AGENT        PATH_INFO             AUTH_TYPE
 HTTP_REFERER           QUERY_STRING          SERVER_SOFTWARE
 HTTP_COOKIE            REMOTE_HOST           API_VERSION
 HTTP_FORWARDED         REMOTE_IDENT          TIME_YEAR
@@ -1662,11 +1657,9 @@ THE_REQUEST            SERVER_PORT           TIME_SEC
 REQUEST_METHOD         SERVER_PROTOCOL       TIME_WDAY
 REQUEST_SCHEME         REMOTE_ADDR           TIME
 REQUEST_URI            REMOTE_USER           ENV:<strong>variablename</strong>
-REQUEST_FILENAME
-</pre>
+REQUEST_FILENAME</pre>
 <p><em>SSL-related variables:</em></p>
-<pre>
-HTTPS                  SSL_CLIENT_M_VERSION   SSL_SERVER_M_VERSION
+<pre>HTTPS                  SSL_CLIENT_M_VERSION   SSL_SERVER_M_VERSION
                        SSL_CLIENT_M_SERIAL    SSL_SERVER_M_SERIAL
 SSL_PROTOCOL           SSL_CLIENT_V_START     SSL_SERVER_V_START
 SSL_SESSION_ID         SSL_CLIENT_V_END       SSL_SERVER_V_END
@@ -1702,8 +1695,7 @@ SSL_VERSION_INTERFACE  SSL_CLIENT_S_DN_OU     SSL_SERVER_S_DN_OU
                        SSL_CLIENT_A_KEY       SSL_SERVER_A_KEY
                        SSL_CLIENT_CERT        SSL_SERVER_CERT
                        SSL_CLIENT_CERT_CHAIN_<strong>n</strong>
-                       SSL_CLIENT_VERIFY      SSL_TLS_SNI
-</pre>
+                       SSL_CLIENT_VERIFY      SSL_TLS_SNI</pre>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
index 1a5a674379e0eca15984e218a3ba48463979bf58..a0f18358c4a58d181d514dfb89a4075dda882f0c 100644 (file)
@@ -82,8 +82,7 @@ CustomLog logs/clickstream "%{cookie}n %r %t"
     <p>(the following is from message
     &lt;022701bda43d$9d32bbb0$1201a8c0@christian.office.sane.com&gt;
     in the new-httpd archives) </p>
-<pre>
-From: "Christian Allen" &lt;christian@sane.com&gt;
+<pre>From: "Christian Allen" &lt;christian@sane.com&gt;
 Subject: Re: Apache Y2K bug in mod_usertrack.c
 Date: Tue, 30 Jun 1998 11:41:56 -0400
 
@@ -112,8 +111,7 @@ Summary:  Mozilla 3.x and up understands two digit dates up until "37"
 (2037).  Mozilla 4.x understands up until at least "50" (2050) in 2-digit
 form, but also understands 4-digit years, which can probably reach up until
 9999.  Your best bet for sending a long-life cookie is to send it for some
-time late in the year "37".
-</pre>
+time late in the year "37".</pre>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
index 980b3dcfe47545ca97dd511d9805d1ad5f352cba..e8f1dee04deda48ddb73203015da2a845afa3c13 100644 (file)
 </div>
 
 
-<pre>
-Date: Wed, 05 Nov 1997 16:59:34 -0800
+<pre>Date: Wed, 05 Nov 1997 16:59:34 -0800
 From: Rick Jones &lt;<a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>&gt;
 Reply-To: <a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>
 Organization: Network Performance
-Subject: HP-UX tuning tips
-</pre>
+Subject: HP-UX tuning tips</pre>
 
     <p>Here are some tuning tips for HP-UX to add to the tuning page.</p>
 
index efe8dc3a8bf84f6311ba11fd0d7a51b0c3e5023c..977b7efcad7b1cad1ef1238196fc11c5dc47594f 100644 (file)
             ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼­¸¦ Âü°íÇϼ¼¿ä.</div>
 
 
-<pre>
-Date: Wed, 05 Nov 1997 16:59:34 -0800
+<pre>Date: Wed, 05 Nov 1997 16:59:34 -0800
 From: Rick Jones &lt;<a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>&gt;
 Reply-To: <a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>
 Organization: Network Performance
-Subject: HP-UX tuning tips
-</pre>
+Subject: HP-UX tuning tips</pre>
 
     <p>ÀÌ ±ÛÀº ¼º´ÉÇâ»ó ÆäÀÌÁö¿¡ Ãß°¡ÇÒ HP-UX ¼º´ÉÇâ»ó ÆÁÀÌ´Ù.</p>
 
index 5e55880880b45a4632c86df8907ccd64496ef7cd..484bf536206355c8972ecbfe3b24e4c7b3e23a09 100644 (file)
     ÀÖ´Ù. Windows NT¿¡¼­ <code>release</code>¿Í <code>debug</code>
     ÄÄÆÄÀÏÇϴ ¸í·É¾î´Â °¢°¢ ´ÙÀ½°ú °°´Ù:</p>
 
-    <div class="example"><pre>
-nmake /f Makefile.win _apacher
+    <div class="example"><pre>nmake /f Makefile.win _apacher
 
-nmake /f Makefile.win _apached
-    </pre></div>
+nmake /f Makefile.win _apached</pre></div>
 
     <p>µÎ ¸í·É¾î ¸ðµÎ ¾ÆÆÄÄ¡¸¦ ÄÄÆÄÀÏÇÑ´Ù. ÈÄÀڴ °á°úÆÄÀÏ¿¡
     µð¹ö±ë Á¤º¸¸¦ Æ÷ÇÔÇÏ¿© ¹ö±×¸¦ Ã£°í ¹®Á¦¸¦ ÃßÀûÇϱ⠽±°Ô
@@ -323,8 +321,7 @@ nmake /f Makefile.win _apached
     <p>ÄÄÆÄÀÏÇÏ°í ¸ðµç ÆÄÀÏÀ» ¿øÇϴ Æú´õ <em>dir</em>¿¡ ÀÚµ¿À¸·Î
     ¼³Ä¡ÇÏ·Á¸é ´ÙÀ½ <code>nmake</code> ¸í·É¾îÁß Çϳª¸¦ »ç¿ëÇÑ´Ù:</p>
 
-    <div class="example"><pre>
-nmake /f Makefile.win installr INSTDIR=<em>dir</em>
+    <div class="example"><pre>nmake /f Makefile.win installr INSTDIR=<em>dir</em>
 
 nmake /f Makefile.win installd INSTDIR=<em>dir</em>
     </pre></div>
index 8c5352007361a35bc870b6dad444e0e47d9de8ce..ae31d0a077741e71a5d1540e757243335acb2884 100644 (file)
@@ -126,11 +126,9 @@ RewriteRule   ^/u/<strong>([^/]+)</strong>/?(.*)   http://<strong>${users-to-hos
     <dd>
       This is done via the following ruleset:
 
-<pre class="prettyprint lang-config">
-# This example is valid in per-directory context only
+<pre class="prettyprint lang-config"># This example is valid in per-directory context only
 RewriteCond %{REQUEST_URI}   !-U
-RewriteRule ^(.+)\.html$          /regenerate_page.cgi   [PT,L]
-</pre>
+RewriteRule ^(.+)\.html$          /regenerate_page.cgi   [PT,L]</pre>
 
 
     <p>The <code>-U</code> operator determines whether the test string
@@ -242,8 +240,7 @@ RewriteRule   ^(/[uge]/[^/]+/?.*):refresh  /internal/cgi/apache/nph-refresh?f=$1
       one would usually say "left as an exercise to the reader"
       ;-) I will provide this, too.</p>
 
-<div class="example"><pre>
-#!/sw/bin/perl
+<div class="example"><pre>#!/sw/bin/perl
 ##
 ##  nph-refresh -- NPH/CGI script for auto refreshing pages
 ##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved.
@@ -343,8 +340,7 @@ for ( $n = 0 ; $n &amp; lt ; $QS_n ; $n++ ) {
 
 exit(0);
 
-##EOF##
-</pre></div>
+##EOF##</pre></div>
     </dd>
   </dl>
 
index 75bae6e066976fd21ddd81124b75aa30b4691e88..79f55e570084e9350b933f8e45fe1a0aebec1d20 100644 (file)
@@ -327,10 +327,8 @@ Certificate for testing purposes?</a></h3>
                        -keyout server.key</strong></code><br />
        These can be used as follows in your <code>httpd.conf</code> 
        file:
-        <pre>
-             SSLCertificateFile    /path/to/this/server.crt
-             SSLCertificateKeyFile /path/to/this/server.key
-       </pre>
+        <pre>             SSLCertificateFile    /path/to/this/server.crt
+             SSLCertificateKeyFile /path/to/this/server.key</pre>
     </li>
     <li>It is important that you are aware that this 
        <code>server.key</code> does <em>not</em> have any passphrase.
@@ -439,10 +437,8 @@ Certificate for testing purposes?</a></h3>
     <li>You should now have two files: <code>server.key</code> and
     <code>server.crt</code>. These can be used as follows in your
     <code>httpd.conf</code> file:
-       <pre>
-       SSLCertificateFile    /path/to/this/server.crt
-       SSLCertificateKeyFile /path/to/this/server.key
-       </pre>
+       <pre>       SSLCertificateFile    /path/to/this/server.crt
+       SSLCertificateKeyFile /path/to/this/server.key</pre>
        The <code>server.csr</code> file is no longer needed.
     </li>
 
index fcf57f3126f8cc81d54347af17d3690af4dacb16..e45de55db4a2db22c54c0cf5ac309c1c091ac5df 100644 (file)
@@ -191,8 +191,7 @@ Intranet website, for clients coming from the Internet?</a></li>
     you should establish a password database containing <em>all</em>
     clients allowed, as follows:</p>
     
-    <div class="example"><h3>httpd.conf</h3><pre>
-SSLCACertificateFile conf/ssl.crt/ca.crt
+    <div class="example"><h3>httpd.conf</h3><pre>SSLCACertificateFile conf/ssl.crt/ca.crt
 SSLCACertificatePath conf/ssl.crt
 SSLVerifyClient      none
 
@@ -212,8 +211,7 @@ Require              valid-user
     See the <code class="directive"><a href="../mod/mod_ssl.html#ssloptions">SSLOptions</a></code> docs for more 
     information.</p>
     
-    <div class="example"><h3>httpd.passwd</h3><pre>
-/C=DE/L=Munich/O=Snake Oil, Ltd./OU=Staff/CN=Foo:xxj31ZMTZzkVA
+    <div class="example"><h3>httpd.passwd</h3><pre>/C=DE/L=Munich/O=Snake Oil, Ltd./OU=Staff/CN=Foo:xxj31ZMTZzkVA
 /C=US/L=S.F./O=Snake Oil, Ltd./OU=CA/CN=Bar:xxj31ZMTZzkVA
 /C=US/L=L.A./O=Snake Oil, Ltd./OU=Dev/CN=Quux:xxj31ZMTZzkVA</pre></div>
 
@@ -221,8 +219,7 @@ Require              valid-user
     into the DN, you can match them more easily using <code class="directive"><a href="../mod/mod_ssl.html#sslrequire">SSLRequire</a></code>, as follows:</p>
 
 
-    <div class="example"><h3>httpd.conf</h3><pre>
-SSLVerifyClient      none
+    <div class="example"><h3>httpd.conf</h3><pre>SSLVerifyClient      none
 SSLCACertificateFile conf/ssl.crt/ca.crt
 SSLCACertificatePath conf/ssl.crt
 
@@ -248,8 +245,7 @@ plain HTTP access for clients on the Intranet.</a></h3>
    This configuration should remain outside of your HTTPS virtual host, so
    that it applies to both HTTPS and HTTP.</p>
 
-    <div class="example"><h3>httpd.conf</h3><pre>
-SSLCACertificateFile conf/ssl.crt/company-ca.crt
+    <div class="example"><h3>httpd.conf</h3><pre>SSLCACertificateFile conf/ssl.crt/company-ca.crt
 
 &lt;Directory /usr/local/apache2/htdocs&gt;
 #   Outside the subarea only Intranet access is granted