Mobile app version of vmapp.org
Login or Join
Ravi8258870

: Apache HTTP server and redirect-carefully I checked a server's configuration file and saw 'redirect-carefully' setting. Checking the docs: redirect-carefully This forces the server to be

@Ravi8258870

Posted in: #Apache #Redirects

I checked a server's configuration file and saw 'redirect-carefully' setting.

Checking the docs:


redirect-carefully

This forces the server to be more careful when sending a redirect to
the client. This is typically used when a client has a known problem
handling redirects. This was originally implemented as a result of a
problem with Microsoft's WebFolders software which has a problem
handling redirects on directory resources via DAV methods.

httpd.apache.org/docs/2.4/env.html
This does not say much on how exactly the server behaves differently when redirect-carefully is set.

What exactly does it mean to "be more careful when sending a redirect"?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ravi8258870

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ann8826881

... a problem handling redirects on directory resources via DAV methods.


This would seem to be the key point here. Normally, mod_dir (with the help of the DirectorySlash directive - which is On by default), will append a trailing slash on all slashless directory requests with a 301 redirect. ie. example.com/subdir gets 301 redirected to example.com/subdir/. This would seem to be regardless of what method is used in the request: GET, POST, including the WebDAV methods COPY, LOCL, MKCOL, etc.

Setting the redirect-carefully environment variable would seem to prevent this redirect from occurring on these WebDAV methods, which can otherwise cause problems. Or more specifically, the redirect only occurs on GET requests. (Note that this excludes POST requests - but POST data is lost during a 301 redirect anyway, and besides, you probably shouldn't be sending POST requests to a "directory" anyway.)

This is the only resource I found that backs this up:


Setting the environment variable "redirect-carefully" fixes some issues with various Web Folder applications that do not handle Redirect requests correctly. Normally mod_dir would respond to all requests for the URL servername/dav with a redirect request to servername/dav/. With "redirect-carefully" set this will now only happen for GET requests.


Source: www.deltadevelopment.de/users/christoph/webdav/

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme