Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2. if (preg_match('#android#i', $_SERVER ['HTTP_USER_AGENT'])) {
  3.     header('Location: market://details?id=com.quidvisrisk.fireapp');
  4.     exit;
  5.  
  6. if (preg_match('#(iPad|iPhone|iPod)#i', $_SERVER ['HTTP_USER_AGENT'])) {
  7.     header('Location: itms://apps.apple.com/gb/app/quidvisrisk-fire-assessments/id1503338827');
  8.     exit;
  9. }
  10. header('Location: https://www.quidvisrisk.com');
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement