Skip to content

Instantly share code, notes, and snippets.

@sasan-salem
Created November 11, 2019 12:29
Show Gist options
  • Save sasan-salem/46de1994ac1d8f397fac844221fb28e6 to your computer and use it in GitHub Desktop.
Save sasan-salem/46de1994ac1d8f397fac844221fb28e6 to your computer and use it in GitHub Desktop.
<?php
$userAgent = $_SERVER['HTTP_USER_AGENT'];
if (strpos($userAgent, 'Instagram')) {
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename= blablabla');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
}
else{
header('Location: https://halterapp.com');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment