diff options
author | Rich Bowen <rbowen@apache.org> | 2023-01-12 15:48:27 +0000 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2023-01-12 15:48:27 +0000 |
commit | c54fb752358058174bb37bd00b536e480e58946b (patch) | |
tree | 60229abbc8970dea61b2a3b2b89b2b9a72bef90e /docs | |
parent | e7ef5a89830955b83b009ed58be8bc09dc4518e5 (diff) | |
download | httpd-c54fb752358058174bb37bd00b536e480e58946b.tar.gz |
Rebuild doc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1906640 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/rewrite/intro.html.en.utf8 | 8 | ||||
-rw-r--r-- | docs/manual/rewrite/intro.xml.fr | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/rewrite/intro.html.en.utf8 b/docs/manual/rewrite/intro.html.en.utf8 index 466340073b..edb26fbdd1 100644 --- a/docs/manual/rewrite/intro.html.en.utf8 +++ b/docs/manual/rewrite/intro.html.en.utf8 @@ -233,7 +233,7 @@ value. <dl> <dt>1. A full filesystem path to a resource</dt> <dd> -<pre class="prettyprint lang-config">RewriteRule "^/games" "/usr/local/games/web"</pre> +<pre class="prettyprint lang-config">RewriteRule "^/games" "/usr/local/games/web/puzzles.html"</pre> <p>This maps a request to an arbitrary location on your filesystem, much like the <code class="directive"><a href="../mod/mod_alias.html#alias">Alias</a></code> directive.</p> @@ -241,12 +241,12 @@ like the <code class="directive"><a href="../mod/mod_alias.html#alias">Alias</a> <dt>2. A web-path to a resource</dt> <dd> -<pre class="prettyprint lang-config">RewriteRule "^/foo/?$" "/bar"</pre> +<pre class="prettyprint lang-config">RewriteRule "^/games$" "/puzzles.html"</pre> <p>If <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> is set to <code>/usr/local/apache2/htdocs</code>, then this directive would -map requests for <code>http://example.com/foo</code> to the -path <code>/usr/local/apache2/htdocs/bar</code>.</p> +map requests for <code>http://example.com/games</code> to the +path <code>/usr/local/apache2/htdocs/puzzles.html</code>.</p> </dd> diff --git a/docs/manual/rewrite/intro.xml.fr b/docs/manual/rewrite/intro.xml.fr index d70c6878de..8a6aa36878 100644 --- a/docs/manual/rewrite/intro.xml.fr +++ b/docs/manual/rewrite/intro.xml.fr @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> -<!-- English Revision: 1866233:1906612 (outdated) --> +<!-- English Revision: 1866233:1906637 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> |