Some crude coding
<?php
$rohan = $_SERVER['HTTP_REFERER'];;
$rohan1 = 'https://localhost/projects/Sairo/wordpress/?cat=15';
if ( $rohan == $rohan1 ) {
echo $rohan;
include(TEMPLATEPATH . '/celeblist.php');
}
else {
include(TEMPLATEPATH . '/archivelist.php');
}
?>