use 303 See Other instead of 302 Found, by default
This commit is contained in:
parent
ef5aa63ea8
commit
d446ba94b9
@ -67,10 +67,9 @@
|
|||||||
// Directory where temporary files will be created. Not really used much yet except for some experimental stuff.
|
// Directory where temporary files will be created. Not really used much yet except for some experimental stuff.
|
||||||
$config['tmp'] = '/tmp';
|
$config['tmp'] = '/tmp';
|
||||||
|
|
||||||
// The HTTP status code to use when redirecting.
|
// The HTTP status code to use when redirecting. http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
|
||||||
// Should be 3xx (redirection). http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
|
// Can be either 303 "See Other" or 302 "Found". (303 is more correct but both should work.)
|
||||||
// "302" is strongly recommended. (This shouldn't even be configurable... It's not like it's going to change or anything.)
|
$config['redirect_http'] = 303;
|
||||||
$config['redirect_http'] = 302;
|
|
||||||
|
|
||||||
// A small file in the main directory indicating that the script has been ran and the board(s) have been generated.
|
// A small file in the main directory indicating that the script has been ran and the board(s) have been generated.
|
||||||
// This keeps the script from querying the database and causing strain when not needed.
|
// This keeps the script from querying the database and causing strain when not needed.
|
||||||
|
Loading…
Reference in New Issue
Block a user