On a web site of mine, I want visitors who are referred from one specific domain to be taken to a special page on the site, while everyone else continues to see the normal home page.

And the reason I know I'm not a monk yet is because it was only after three days of wrangling with Apache mod_rewrite, trying unsuccessfully to bend it to my will, that I realized I could just use perl:

#!/usr/bin/perl -w use strict; use CGI qw(referer redirect); # index.cgi my $site = 'http://mysite.com/'; my $newpage = 'newpage.html'; my $home = 'index.html'; my $q = new CGI; if ($q->referer =~ /thatdomain/){ print redirect($site . $newpage); } else { print redirect($site . $home); }

And then in my .htaccess file I say

DirectoryIndex index.cgi

and I'm done!

Three days!!!

I hope someday to get to where maybe only a day and a half goes by before I reach for perl. Will I be a monk then? :)


In reply to How I know I'm not a monk yet by mojodaddy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.