diff options
author | Martin Kraemer <martin@apache.org> | 2001-11-07 17:06:43 +0100 |
---|---|---|
committer | Martin Kraemer <martin@apache.org> | 2001-11-07 17:06:43 +0100 |
commit | 6f53d488165d99c15ba94193478e9e547c820707 (patch) | |
tree | ac0f8cfce45389b0ce7912008db50a845b2e690b | |
parent | Reorder so InstallBin is the _default_ top level project, and add htdbm (diff) | |
download | apache2-6f53d488165d99c15ba94193478e9e547c820707.tar.xz apache2-6f53d488165d99c15ba94193478e9e547c820707.zip |
Fix checks for FORBIDDEN directories vs. files
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91787 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/error/HTTP_FORBIDDEN.html.var | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/error/HTTP_FORBIDDEN.html.var b/docs/error/HTTP_FORBIDDEN.html.var index 9a30ceb9f1..61e4105c73 100644 --- a/docs/error/HTTP_FORBIDDEN.html.var +++ b/docs/error/HTTP_FORBIDDEN.html.var @@ -4,7 +4,7 @@ Body:----------de-- <!--#set var="TITLE" value="Zugriff verweigert!" --> <!--#include virtual="include/top.html" --> - <!--#if expr="$REDIRECT_URL=//$/" --> + <!--#if expr="$REDIRECT_URL = //$/" --> Der Zugriff auf das angeforderte Verzeichnis ist nicht möglich. Entweder ist kein Index-Dokument vorhanden oder das Verzeichnis @@ -26,7 +26,7 @@ Content-type: text/html Body:----------en-- <!--#set var="TITLE" value="Access forbidden!" --> <!--#include virtual="include/top.html" --> -<!--#if expr="$REDIRECT_URL=//$/" --> +<!--#if expr="$REDIRECT_URL = //$/" --> You don't have permission to access the requested directory. There is either no index document or the directory is read-protected. @@ -47,7 +47,7 @@ Body:----------es-- <!--#set var="TITLE" value="Access forbidden!" --> <!--#include virtual="include/top.html" --> - <!--#if expr="$REDIRECT_URL=//$/" --> + <!--#if expr="$REDIRECT_URL = //$/" --> Usted no tiene permiso para accesar a la dirección solicitada. Existe la posibilidad de que el directorio @@ -70,7 +70,7 @@ Content-type: text/html Body:----------fr-- <!--#set var="TITLE" value="Accès interdit!" --> <!--#include virtual="include/top.html" --> -<!--#if expr="$REDIRECT_URL=//$/" --> +<!--#if expr="$REDIRECT_URL = //$/" --> Vous n'avez pas le droit d'accéder au répertoire demandé. Soit il n'y a pas de document index soit le répertoire est protégé. |