diff options
author | Lucien Gentis <lgentis@apache.org> | 2012-05-17 17:09:35 +0200 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2012-05-17 17:09:35 +0200 |
commit | 10f185528f2067a9fbe4009a549ed54ae80fb1b3 (patch) | |
tree | d9207cd54362ac981ce23ebffe5081325991ef9f /docs/manual/urlmapping.xml.fr | |
parent | Reverting back. (diff) | |
download | apache2-10f185528f2067a9fbe4009a549ed54ae80fb1b3.tar.xz apache2-10f185528f2067a9fbe4009a549ed54ae80fb1b3.zip |
Updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1339631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/urlmapping.xml.fr | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/docs/manual/urlmapping.xml.fr b/docs/manual/urlmapping.xml.fr index fd8563779f..709dad9b0a 100644 --- a/docs/manual/urlmapping.xml.fr +++ b/docs/manual/urlmapping.xml.fr @@ -3,7 +3,7 @@ <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> -<!-- English Revision: 1310494:1330883 (outdated) --> +<!-- English Revision: 1330883 --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more @@ -123,7 +123,7 @@ l'arborescence DocumentRoot</title> module="mod_alias">Alias</directive> pour rattacher toute portion du système de fichiers à l'arborescence du site web. Par exemple, avec</p> -<example>Alias /docs /var/web</example> +<highlight language="config">Alias /docs /var/web</highlight> <p>l'URL <code>http://www.example.com/docs/dir/file.html</code> correspondra au fichier <code>/var/web/dir/file.html</code>. La @@ -140,8 +140,9 @@ l'arborescence DocumentRoot</title> sur les <glossary ref="regex">expressions rationnelles</glossary>. Par exemple,</p> -<example>ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) - /home/$1/cgi-bin/$2</example> +<highlight language="config"> + ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2 + </highlight> <p>fera correspondre une requête du style <code>http://example.com/~user/cgi-bin/script.cgi</code> au chemin @@ -189,8 +190,9 @@ l'arborescence DocumentRoot</title> <code>/home/user/public_html/file.html</code>, utilisez la directive <code>AliasMatch</code> suivante :</p> -<example>AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ - /home/$1/public_html/$3</example> +<highlight language="config"> + AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3 + </highlight> </section> <section id="redirect"><title>Redirection d'URL</title> @@ -209,7 +211,9 @@ l'arborescence DocumentRoot</title> nouveau répertoire <code>/bar/</code>, vous pouvez demander aux clients de le requérir à sa nouvelle localisation comme suit :</p> -<example>Redirect permanent /foo/ http://www.example.com/bar/</example> +<highlight language="config"> + Redirect permanent /foo/ http://www.example.com/bar/ + </highlight> <p>Ceci aura pour effet de rediriger tout chemin d'URL commençant par <code>/foo/</code> vers le même chemin d'URL sur le serveur @@ -224,14 +228,16 @@ l'arborescence DocumentRoot</title> laisser toutes les autres requêtes inchangées, utilisez la configuration suivante :</p> -<example>RedirectMatch permanent ^/$ - http://www.example.com/startpage.html</example> +<highlight language="config"> + RedirectMatch permanent ^/$ http://www.example.com/startpage.html + </highlight> <p>De même, pour rediriger temporairement toutes les pages d'un site vers une page particulière d'un autre site, utilisez ce qui suit :</p> -<example>RedirectMatch temp .* - http://othersite.example.com/startpage.html</example> +<highlight language="config"> + RedirectMatch temp .* http://othersite.example.com/startpage.html + </highlight> </section> <section id="proxy"><title>Mandataire inverse (Reverse Proxy)</title> @@ -250,12 +256,12 @@ dans le répertoire <code>/bar/</code> sur <code>internal.example.com</code> et les renvoie au client comme s'ils appartenaient au serveur local.</p> -<example> +<highlight language="config"> ProxyPass /foo/ http://internal.example.com/bar/<br /> ProxyPassReverse /foo/ http://internal.example.com/bar/<br /> ProxyPassReverseCookieDomain internal.example.com public.example.com<br /> ProxyPassReverseCookiePath /foo/ /bar/ -</example> +</highlight> <p>La directive <directive module="mod_proxy">ProxyPass</directive> configure le serveur pour rapatrier les documents appropriés, alors que la directive @@ -274,9 +280,9 @@ du serveur mandataire et effectuer sa requête directement sur d'utres contenus) situés dans la page au moment où elle est envoyée au client en utilisant le module <module>mod_substitute</module>.</p> -<example> +<highlight language="config"> Substitute s/internal\.example\.com/www.example.com/i -</example> +</highlight> <p>Le module <module>mod_proxy_html</module> rend possible une réécriture plus élaborée des liens en HTML et XHTML. Il permet de créer des listes |