On Tue, 9 Mar 2004, James Zhao wrote:

> Does anyone have a very simple but working redirector for squid 2.3? All I
> want to do is redirect any URL to just one fixed URL.

#!/bin/sh
while read request; do
   echo http://the.fixed.url
done

Regards
Henrik

Reply via email to