diff options
author | Lucien Gentis <lgentis@apache.org> | 2015-05-24 16:38:38 +0200 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2015-05-24 16:38:38 +0200 |
commit | 9d8fe71308eadc56b07558568728be43afee3580 (patch) | |
tree | 469b04f2d87bd9534bd69754948a952543418956 /docs/manual/urlmapping.xml.fr | |
parent | Save a few bytes in conf pool and axe a function that duplicates 'ap_set_stri... (diff) | |
download | apache2-9d8fe71308eadc56b07558568728be43afee3580.tar.xz apache2-9d8fe71308eadc56b07558568728be43afee3580.zip |
XML updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681464 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/urlmapping.xml.fr | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/manual/urlmapping.xml.fr b/docs/manual/urlmapping.xml.fr index dfd30169fe..efdc8dc490 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: 1561569:1673945 (outdated) --> +<!-- English Revision: 1673945 --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more @@ -146,7 +146,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> -<highlight language="config">Alias /docs /var/web</highlight> +<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 @@ -164,7 +164,7 @@ l'arborescence DocumentRoot</title> Par exemple,</p> <highlight language="config"> - ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2 + ScriptAliasMatch "^/~([a-zA-Z0-9]+)/cgi-bin/(.+)" "/home/$1/cgi-bin/$2" </highlight> <p>fera correspondre une requête du style @@ -214,7 +214,7 @@ l'arborescence DocumentRoot</title> <code>AliasMatch</code> suivante :</p> <highlight language="config"> - AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3 + AliasMatch "^/upages/([a-zA-Z0-9]+)(/(.*))?$" "/home/$1/public_html/$3" </highlight> </section> @@ -235,7 +235,7 @@ l'arborescence DocumentRoot</title> de le requérir à sa nouvelle localisation comme suit :</p> <highlight language="config"> - Redirect permanent /foo/ http://www.example.com/bar/ + Redirect permanent "/foo/" "http://www.example.com/bar/" </highlight> <p>Ceci aura pour effet de rediriger tout chemin d'URL commençant par @@ -252,14 +252,14 @@ l'arborescence DocumentRoot</title> configuration suivante :</p> <highlight language="config"> - RedirectMatch permanent ^/$ http://www.example.com/startpage.html + 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> <highlight language="config"> - RedirectMatch temp .* http://othersite.example.com/startpage.html + RedirectMatch temp ".*" "http://othersite.example.com/startpage.html" </highlight> </section> @@ -280,10 +280,10 @@ dans le répertoire et les renvoie au client comme s'ils appartenaient au serveur local.</p> <highlight language="config"> -ProxyPass /foo/ http://internal.example.com/bar/<br /> -ProxyPassReverse /foo/ http://internal.example.com/bar/<br /> +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/ +ProxyPassReverseCookiePath "/foo/" "/bar/" </highlight> <p>La directive <directive module="mod_proxy">ProxyPass</directive> configure |