X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=doc%2Fwebserver%2Fredirect.php;h=b00fc9c5227550a67ada5ee243646f3c10b6d863;hp=ce2c0a7c6cdab8c13d97de842b769f76b56cd0e2;hb=HEAD;hpb=5844d2f4fdc2ddd1557ac8d3b07e02095dd9dd80 diff --git a/doc/webserver/redirect.php b/doc/webserver/redirect.php index ce2c0a7c..b00fc9c5 100755 --- a/doc/webserver/redirect.php +++ b/doc/webserver/redirect.php @@ -71,26 +71,29 @@ parse_parameters(); // Please do NOT delete any of these redirects. Even if you take them -// out of JunkBuster, they may be in use by older releases. +// out of Privoxy, they may be in use by older releases. // Note 2: Should *not* include #target part in these URLs. // (It works with MS IE, but is not valid HTTP.) - +//http://ijbswa.sourceforge.net/user-manual/configuration.html switch($to) { case "faq": // Used by 2.9.0+ - header ("Location: http://www.junkbusters.com/ht/en/ijb2faq.html"); - exit; +// header ("Location: http://www.junkbusters.com/ht/en/ijb2faq.html"); + header ("Location: http://www.privoxy.org/faq/"); + exit; case "option": // Used by 2.9.0+ // Config file options // called as redirect.php?v=X.X.X&to=option#optionname - header ("Location: http://www.junkbusters.com/ht/en/ijb2man.html"); +// header ("Location: http://www.junkbusters.com/ht/en/ijb2man.html"); + header ("Location: http://www.privoxy.org/user-manual/configuration.html"); exit; case "win": // Used by 2.9.0+ on WIN32 - header ("Location: http://www.junkbusters.com/ht/en/ijbwin.html"); +// header ("Location: http://www.junkbusters.com/ht/en/ijbwin.html"); + header ("Location: http://www.privoxy.org/user-manual/configuration.html"); exit; // case "home": // // Currently hard-wired into the code. @@ -101,7 +104,7 @@ switch($to) // header ("Location: http://www.fsf.org/copyleft/gpl.html"); // exit; default: - header ("Location: http://ijbswa.sourceforge.net/"); + header ("Location: http://www.privoxy.org/"); exit; }