Advertisement
FibsFreitag

Facebook Bot Blocker

Jan 3rd, 2013
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2. $ua = $_SERVER['HTTP_USER_AGENT'];
  3.  
  4. if (preg_match('/facebookexternalhit/si',$ua)) {
  5. header('Location: no_fb_page.php');
  6. die() ;
  7. }
  8.  
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement