In fact, Safari doesn't search a <link> tag or anything else. There is two dfifferent thing that we can use:
The two ways work very good and you can use any of them, or even both of them if you want to be sure.
PHP:
If we inspect the HTTP headers, we will see that when it's Safari Top Sites Preview that sends the request, there is X_PURPOSE that is set to preview. Then you must write in the normal website:
if($_SERVER["HTTP_X_PURPOSE"]=="preview")
{
header("Location:thumbail link");//Redirect to the thumbail.
}
//Display the normal website.
And you can add in the page where there is the thumbail:
if($_SERVER["HTTP_X_PURPOSE"]!="preview")
{
header("Location:normal link");//Redirect to the normal website.
}
//Display the thumbail.
So that you can't see the thumbail except from the Safari Top Sites Preview.
JavaScript:
window.navigator.loadPurpose has the value preview if it's Safari Top Sites Preview which tries to open the website. But window.navigator does not exist if it's in a normal view. As such, when you test this value, you have to test for the very existence of this property as well as for its truthiness. Then this is the code for the normal website:
if(window.navigator&&window.navigator.loadPurpose==="preview")
{
window.location.href="thumbail link";//Redirect to the thumbail
}
And for the thumbail page:
if(!window.navigator||window.navigator.loadPurpose!=="preview")
{
window.location.href="normal link";//Redirect to the normal website
}
Little trick from me:
If you really want to put a <link> tag you can write:
<link rel="safari-preview" href="thumbail link" />
And then add at the end of the head section:
<script>for(var i=0,link=document.getElementsByTagName("link"),l=link.length;i<l;i++)if(link[i].getAttribute("rel")==="safari-preview"&&window.navigator&&window.navigator.loadPurpose==="preview")window.location.href=link[i].getAttribute("href");</script>
Sources: