Quote:
|
Originally Posted by fuzebox
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
|
Something along these lines?
Code:
<?
function url($referer)
{
if $referer = "some query string";
return "http://querystringpage.com";
}
?>
<script type="text/javascript">
if( window != window.top ) { top.location.href = "<? url($_SERVER['HTTP_REFERER']); ?>"; }
</script>