From owner-freebsd-isp Mon Oct 2 17: 0:53 2000 Delivered-To: freebsd-isp@freebsd.org Received: from scaup.prod.itd.earthlink.net (scaup.prod.itd.earthlink.net [207.217.121.49]) by hub.freebsd.org (Postfix) with ESMTP id 149D837B503 for ; Mon, 2 Oct 2000 17:00:50 -0700 (PDT) Received: from veager.siteplus.net (user-38lc8vb.dialup.mindspring.com [209.86.35.235]) by scaup.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with ESMTP id RAA00260; Mon, 2 Oct 2000 17:00:42 -0700 (PDT) Date: Mon, 2 Oct 2000 20:00:40 -0400 (EDT) From: Jim Weeks To: "N.B. DelMore" Cc: freebsd-isp@FreeBSD.ORG Subject: Re: Domain Redirection & Cloaking In-Reply-To: <3.0.6.32.20001002193956.01526910@mail.inr.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isp@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 2 Oct 2000, N.B. DelMore wrote: > Does any one have, or can anyone point me to a script that does domain > redirection and cloaking? I am not 100% sure what you mean by this, but this script would redirect to another domain and would never show the calling domain in the browser window. #!/usr/bin/perl print "location: http://otherdomain.com\n\n"; In other words you would add index.cgi to the list of index files in apache, if it isn't already one, and put this file in somedomain.com's web directory as index.cgi. Then when someone went to somedomain.com they would automatically be redirected to otherdomain.com and otherdomain.com would show up in the browser window. Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message