diff --git a/docs/manual/misc/rewriteguide.html.en b/docs/manual/misc/rewriteguide.html.en index 2b6651ce8b..79e9ae5552 100644 --- a/docs/manual/misc/rewriteguide.html.en +++ b/docs/manual/misc/rewriteguide.html.en @@ -176,19 +176,20 @@ RewriteRule ^/(.*) http://fully.qualified.domain.name/$1 [L,R]
We just redirect the URL /
to
- /e/www/
. While is seems trivial it is
- actually trivial with mod_rewrite
, only.
- Because the typical old mechanisms of URL Aliases
- (as provides by mod_alias
and friends)
- only used prefix matching. With this you cannot
- do such a redirection because the DocumentRoot
is a prefix of all URLs. With
- mod_rewrite
it is really trivial:
We redirect the URL /
to
+ /e/www/
:
+
RewriteEngine on RewriteRule ^/$ /e/www/ [R]
Note that this can also be handled using the RedirectMatch
directive:
+ RedirectMatch ^/$ http://example.com/e/www/
+
¿øÀúÀÚ
diff --git a/docs/manual/misc/rewriteguide.xml.ko b/docs/manual/misc/rewriteguide.xml.ko
index 41a5de6302..b721b6d899 100644
--- a/docs/manual/misc/rewriteguide.xml.ko
+++ b/docs/manual/misc/rewriteguide.xml.ko
@@ -1,7 +1,7 @@
-
+
+
+
+
+
+