Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 690EC109C8 for ; Thu, 26 Dec 2013 16:12:46 +0000 (UTC) Received: (qmail 89166 invoked by uid 500); 26 Dec 2013 16:12:28 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 89078 invoked by uid 500); 26 Dec 2013 16:12:27 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 89006 invoked by uid 99); 26 Dec 2013 16:12:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Dec 2013 16:12:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Dec 2013 16:12:24 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 07E542388980; Thu, 26 Dec 2013 16:12:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1553505 - in /httpd/httpd/branches/2.4.x/docs/manual/mod: mod_dir.html.fr mod_dir.xml.fr Date: Thu, 26 Dec 2013 16:12:03 -0000 To: cvs@httpd.apache.org From: gryzor@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131226161204.07E542388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gryzor Date: Thu Dec 26 16:12:03 2013 New Revision: 1553505 URL: http://svn.apache.org/r1553505 Log: [2.4][doc] mod_dir.xml r1553503 backport - Document 3xx DirectoryIndexRedirect codes Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.html.fr httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml.fr Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.html.fr URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.html.fr?rev=1553505&r1=1553504&r2=1553505&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.html.fr (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.html.fr Thu Dec 26 16:12:03 2013 @@ -172,7 +172,19 @@ répertoires. DirectoryIndex qui est sélectionnée et renvoyée de manière transparente au client. La directive DirectoryIndexRedirect permet de rediriger le - client vers une ressource externe.

+ client via une redirection de type 3xx.

+ + Les arguments acceptés sont : +
    +
  • on : envoie une redirection 302 vers l'index choisi.
  • +
  • off : n'envoie aucune redirection. Il s'agit du comportement historique de mod_dir.
  • +
  • permanent : envoie une redirection 301 (permanent) vers l'index choisi.
  • +
  • temp : ceci est équivalent à on
  • +
  • seeother : envoie une redirection 303 (également appelée "See Other") vers l'index choisi.
  • +
  • 3xx-code : envoie une redirection accompagnée du code 3xx choisi.
  • +
+ +

Exemple

       DirectoryIndexRedirect on

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml.fr?rev=1553505&r1=1553504&r2=1553505&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dir.xml.fr Thu Dec 26 16:12:03 2013
@@ -1,7 +1,7 @@
 
 
 
-
+
 
 
 
@@ -156,7 +156,19 @@ répertoires.
     DirectoryIndex qui est sélectionnée et
     renvoyée de manière transparente au client. La directive
     DirectoryIndexRedirect permet de rediriger le
-    client vers une ressource externe.

+ client via une redirection de type 3xx.

+ + Les arguments acceptés sont : +
    +
  • on : envoie une redirection 302 vers l'index choisi.
  • +
  • off : n'envoie aucune redirection. Il s'agit du comportement historique de mod_dir.
  • +
  • permanent : envoie une redirection 301 (permanent) vers l'index choisi.
  • +
  • temp : ceci est équivalent à on
  • +
  • seeother : envoie une redirection 303 (également appelée "See Other") vers l'index choisi.
  • +
  • 3xx-code : envoie une redirection accompagnée du code 3xx choisi.
  • +
+ + Exemple