Is it possible to change the response of the jump.cgi to 200 instead of 302? If so, how do I accomplish this?
Jun 26, 2012, 7:07 AM
User (339 posts)
Jun 26, 2012, 7:07 AM
Post #3 of 3
Views: 3212
There is an official way to achieve this, although it is not recommended by W3C because there is no way user can control the refresh rate from the browser.
The other problems are:
1. Your site would become incredibly annoying for your visitors because this method breaks the back button.
2. Your site will be penalised from search engines by using this method.
However, if you still want to do this, head to Links/User/Jump.pm line 176:
and change it from:
to:
print $IN->header();
Cheers,
Boris
Facebook, Twitter and Google+ Auth for GLinks and GCommunity | reCAPTCHA for GLinks | Free GLinks Plugins
The other problems are:
1. Your site would become incredibly annoying for your visitors because this method breaks the back button.
2. Your site will be penalised from search engines by using this method.
However, if you still want to do this, head to Links/User/Jump.pm line 176:
and change it from:
Code:
print $IN->redirect($goto);to:
Code:
print "Refresh: 0; url=$goto" . $GT::CGI::EOL; print $IN->header();
Cheers,
Boris
Facebook, Twitter and Google+ Auth for GLinks and GCommunity | reCAPTCHA for GLinks | Free GLinks Plugins