*) The Location: response header field, used for external
redirect, *must* be an absoluteURI. The Redirect directive
tested for that, but RedirectMatch didn't -- it would allow
- almost anything through. Now it, too, will correctly varf
- if the redirection target isn't an absoluteURI. [Ken Coar]
+ almost anything through. Now it will try to turn an abs_path
+ into an absoluteURI, but it will correctly varf like Redirect
+ if the final redirection target isn't an absoluteURI. [Ken Coar]
*) apxs: fix bug that prevented -S option from containing quotes.
[Ben Laurie]
if ((ret = try_alias_list(r, dirconf->redirects, 1, &status)) != NULL) {
if (ap_is_HTTP_REDIRECT(status)) {
+ if (ret[0] == '/') {
+ char *orig_target = ret;
+
+ ret = ap_construct_url(r->pool, ret, r);
+ ap_log_rerror(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, r,
+ "incomplete redirection target of '%s' for "
+ "URI '%s' modified to '%s'",
+ orig_target, r->uri, ret);
+ }
if (!ap_is_url(ret)) {
status = HTTP_INTERNAL_SERVER_ERROR;
ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, r,
"cannot redirect '%s' to '%s'; "
- "target is not a valid absoluteURI",
+ "target is not a valid absoluteURI or abs_path",
r->uri, ret);
}
else {