diff options
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.230 2003/10/05 18:52:51 ukai Exp $ */ +/* $Id: file.c,v 1.231 2003/10/08 14:51:34 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -1710,10 +1710,15 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer, } #endif readHeader(&f, t_buf, FALSE, &pu); - if (http_response_code >= 301 && http_response_code <= 303 + if (((http_response_code >= 301 && http_response_code <= 303) + || http_response_code == 307) && (p = checkHeader(t_buf, "Location:")) != NULL && checkRedirection(&pu)) { /* document moved */ + /* 301: Moved Permanently */ + /* 302: Found */ + /* 303: See Other */ + /* 307: Temporary Redirect (HTTP/1.1) */ tpath = url_quote_conv(p, DocumentCharset); request = NULL; UFclose(&f); |