From 6e1f97471e8a44619c5f4bcafa4bbc3e205ad765 Mon Sep 17 00:00:00 2001
From: Vincent Deffontaines DirectoryIndexRedirect
causes an external redirect
to instead be issued.
on
: issues a 302 redirection to the index resource.off
: does not issue a redirection. This is the legacy behaviour of mod_dir.permanent
: issues a 301 (permanent) redirection to the index resource.temp
: this has the same effect as on
seeother
: issues a 303 redirection (also known as "See Other") to the index resource.DirectoryIndexRedirect ondiff --git a/docs/manual/mod/mod_dir.xml b/docs/manual/mod/mod_dir.xml index 4301f37088..646b67988f 100644 --- a/docs/manual/mod/mod_dir.xml +++ b/docs/manual/mod/mod_dir.xml @@ -149,6 +149,17 @@ a directory >DirectoryIndexRedirect causes an external redirect to instead be issued. + The argument can be : +
on
: issues a 302 redirection to the index resource.off
: does not issue a redirection. This is the legacy behaviour of mod_dir.permanent
: issues a 301 (permanent) redirection to the index resource.temp
: this has the same effect as on
seeother
: issues a 303 redirection (also known as "See Other") to the index resource.