Serverside detection

Using the option "ajaxHeader" (default: "{'jHistory':'jHistory'}") you can set the header parameter on how jHistory sends data to the server using ajax requests.

So you can make diffrent between serverside landing pages and link click requests.

redirect normal

PHP Example Code

<?php
      if($_SERVER['HTTP_JHISTORY']){
          echo "This Content is ajax Called";
      } else {
          echo "This content ist from redirect, not ajax Called";
      }
?>