kcmcgill

301 javascript redirect that is google friendly

Aug 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <script>
  3. if(navigator.userAgent.indexOf("Firefox") != -1)
  4. {
  5.    window.location = "http://twitterslut.org";
  6. }
  7. else if(navigator.userAgent.indexOf("MSIE") != -1)
  8. {
  9.    window.location = "http://twitterslut.org";
  10. }
  11. else if(navigator.userAgent.indexOf("Netscape") != -1)
  12. {
  13.    window.location = "http://twitterslut.org";
  14. }
  15. else
  16. {
  17.    window.location = "http://twitterslut.org";
  18. }
  19. </script>
  20. </html>
Add Comment
Please, Sign In to add comment