diff options
author | Jeff Trawick <trawick@apache.org> | 2002-10-05 14:15:21 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-10-05 14:15:21 +0200 |
commit | abe8718745de07d1e59743947d58f29bf079fa56 (patch) | |
tree | c27c043973ae439e4acf225da92b34dd2e32e2f8 /docs/conf | |
parent | Fix a bug with dbm rewrite maps which caused the wrong value to (diff) | |
download | apache2-abe8718745de07d1e59743947d58f29bf079fa56.tar.xz apache2-abe8718745de07d1e59743947d58f29bf079fa56.zip |
add a BrowserMatch directive to enable redirect-carefully for
the Gnome VFS so that WebDAV works correctly with Nautilus
and other code using the Gnome VFS
PR: 12901
Submitted by: Rusty Conover <rconover@infogears.com>
Reviewed by: Jeff Trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97111 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/conf')
-rw-r--r-- | docs/conf/httpd-std.conf.in | 3 | ||||
-rw-r--r-- | docs/conf/httpd-win.conf | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/conf/httpd-std.conf.in b/docs/conf/httpd-std.conf.in index a055fdced8..ced7215790 100644 --- a/docs/conf/httpd-std.conf.in +++ b/docs/conf/httpd-std.conf.in @@ -949,11 +949,12 @@ BrowserMatch "JDK/1\.0" force-response-1.0 # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. -# Same deal with Apple's DAV filesystem. +# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV. # BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully +BrowserMatch "^gnome-vfs" redirect-carefully # # Allow server status reports generated by mod_status, diff --git a/docs/conf/httpd-win.conf b/docs/conf/httpd-win.conf index 0f54df71e2..a9ecc73f67 100644 --- a/docs/conf/httpd-win.conf +++ b/docs/conf/httpd-win.conf @@ -869,11 +869,12 @@ BrowserMatch "JDK/1\.0" force-response-1.0 # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. -# Same deal with Apple's DAV filesystem. +# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV. # BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully +BrowserMatch "^gnome-vfs" redirect-carefully # # Allow server status reports generated by mod_status, |