]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
update transformation
authorAndré Malo <nd@apache.org>
Thu, 30 Dec 2004 23:34:29 +0000 (23:34 +0000)
committerAndré Malo <nd@apache.org>
Thu, 30 Dec 2004 23:34:29 +0000 (23:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@123748 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/misc/rewriteguide.html.en
docs/manual/misc/rewriteguide.html.ko.euc-kr
docs/manual/misc/rewriteguide.xml.ko
docs/manual/misc/rewriteguide.xml.meta
docs/manual/vhosts/examples.html.ko.euc-kr
docs/manual/vhosts/examples.xml.ko
docs/manual/vhosts/examples.xml.meta

index 9e3536df0aa9a407807478e9823e6f320917d5af..05ba71d2bf810e87376c0651a53ec5e178cd99a1 100644 (file)
@@ -184,19 +184,20 @@ RewriteRule ^/(.*)         http://fully.qualified.domain.name/$1 [L,R]
         <dt>Solution:</dt>
 
         <dd>
-          <p>We just redirect the URL <code>/</code> to
-          <code>/e/www/</code>. While is seems trivial it is
-          actually trivial with <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>, only.
-          Because the typical old mechanisms of URL <em>Aliases</em>
-          (as provides by <code class="module"><a href="../mod/mod_alias.html">mod_alias</a></code> and friends)
-          only used <em>prefix</em> matching. With this you cannot
-          do such a redirection because the <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> is a prefix of all URLs. With
-          <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> it is really trivial:</p>
-
+          <p>We redirect the URL <code>/</code> to
+          <code>/e/www/</code>:
+          </p>
+         
 <div class="example"><pre>
 RewriteEngine on
 RewriteRule   <strong>^/$</strong>  /e/www/  [<strong>R</strong>]
 </pre></div>
+
+    <p>Note that this can also be handled using the <code class="directive"><a href="../mod/mod_alias.html#redirectmatch">RedirectMatch</a></code> directive:</p>
+
+    <div class="example"><p><code>
+    RedirectMatch ^/$ http://example.com/e/www/
+    </code></p></div>
         </dd>
       </dl>
 
index e3abaed6ef370e71aec986b0036c47b62aa64a5d..103d0dd9be25769a2d11271146d5a9d410806cd0 100644 (file)
@@ -21,6 +21,8 @@
 <p><span>°¡´ÉÇÑ ¾ð¾î: </span><a href="../en/misc/rewriteguide.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/misc/rewriteguide.html" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">ÀÌ ¹®¼­´Â ÃÖ½ÅÆÇ ¹ø¿ªÀÌ ¾Æ´Õ´Ï´Ù.
+            ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼­¸¦ Âü°íÇϼ¼¿ä.</div>
 
     <div class="note">
       <p>¿øÀúÀÚ<br />
index e67a0f703f22bb5df37001a92be4689157c24711..ff2cb0d6c128609fe277750342552e8ed9bca787 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 106090 -->
+<!-- English Revision: 106090:123578 (outdated) -->
 
 <!--
  Copyright 2004 The Apache Software Foundation
index fdc8e227050b33714cb4e088371ec07c106efe87..9792580d45f8a2bf6aa8f5f18069c15244aef90d 100644 (file)
@@ -7,6 +7,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>ko</variant>
+    <variant outdated="yes">ko</variant>
   </variants>
 </metafile>
index 72dc334b5aac0dc77dafe0c0ccef571ba8aa21ab..fc37624c7377f2a27c6861702b8bc749a31a13d1 100644 (file)
@@ -21,6 +21,8 @@
 <p><span>°¡´ÉÇÑ ¾ð¾î: </span><a href="../en/vhosts/examples.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../ko/vhosts/examples.html" title="Korean">&nbsp;ko&nbsp;</a></p>
 </div>
+<div class="outofdate">ÀÌ ¹®¼­´Â ÃÖ½ÅÆÇ ¹ø¿ªÀÌ ¾Æ´Õ´Ï´Ù.
+            ÃÖ±Ù¿¡ º¯°æµÈ ³»¿ëÀº ¿µ¾î ¹®¼­¸¦ Âü°íÇϼ¼¿ä.</div>
 
 
     <p>ÀÌ ¹®¼­´Â ÀÚÁÖ ¹®ÀǵǴ °¡»óÈ£½ºÆ®
index 2d88567ee159ed7374ff4cf5655aa2e49535df8e..cd736399f61c964ba365c6eb6881390442c01177 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='EUC-KR' ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 106090 -->
+<!-- English Revision: 106090:123367 (outdated) -->
 
 <!--
  Copyright 2003-2004 The Apache Software Foundation
index dafab07f6823e4de70c06f685cf83b26c5f23d4e..e16245834e9366687b36f0b08eebd2704cc5c581 100644 (file)
@@ -7,6 +7,6 @@
 
   <variants>
     <variant>en</variant>
-    <variant>ko</variant>
+    <variant outdated="yes">ko</variant>
   </variants>
 </metafile>