Provant el capo, que es un redirector per al Squid, he vist que no acabava de funcionar del tot bé. En comptes de retocar el codi existent, he decidit fer un redirector nou, que no s'ahgi de compilar, amb Perl i que sigui més fàcil. Al menys m'ho sembla a mi 
Aquest és l'script:
#!/usr/bin/perl
#
# startpage.pl (Squid Proxy Redirector)
# joan.llopart@guifi.net 03-2008
# Redirects proxy user to a defined startpage every certain time.
use strict;
#
# --- CONFIG ---
#
# Startpage will be shown every ... (time in seconds)
my $ref_time = 3600; # 1 hour
#
# Redirection to this webpage
my $startp = "http://guifi.net";

