There is no 100% way to do this. You can use $_SESSION or $_COOKIE to save some data for current user (e.g. that he or she has visited this site), but he will see intro again if he opens up your site in different browser. User can also clear cookies, so he or she will see intro again.
If your site implements membership, where users can stay logged in, then you can store this information in database (or other data source), so user will not see intro (unless (s)he logouts).
Example of using session to store some info for current user (it doesn't require membership or the likes, it will work, because data is saved for every user visiting your site):
<?php
// index.php
// if you prefer to use cookies instead of sessions
// then replace $_SESSION with $_COOKIE
$hasVisited = ($_SESSION['hasVisited'] === true);
if($hasVisited) {
header("Location: home.php");
die();
}
// here you show your intro
// user has visited this site, so:
$_SESSION['hasVisited'] = true;
?>
Explanation for differences between cookies and session: Cookies vs. Sessions.