#!/usr/bin/perl $id = "$ENV{PATH_INFO}"; $id =~ s/\///; ($id,@page) = split (/\//, $id); foreach $item (@page) { $page .= "$item/"; } chop $page; if ($page !~ /http\:\/\//i && $page) { $page = "http://$page"; } $go = "http://www.nitromarketing.com/g.o/roibot/http://www.MarketingManuscript.com"; print "HTTP/1.0 302 Temporary Redirection\r\n" if $ENV{PERLXS} eq "PerlIS"; print "Location: $go\n\n"; exit;