Transfer to my page

Discussion in 'Programming' started by fgsg, Apr 29, 2010.

  1. #1
    Hi, how i can make something like if someone open on my page PAGE.COM works fine if he try copy code and put on some other server and if try open transfer on my page PAGE.COM ? THX
     
    fgsg, Apr 29, 2010 IP
  2. thehcdreamer

    thehcdreamer Peon

    Messages:
    22
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Well, if someone steals your code will probably remove this, but anyway (not tested):

    
    <script type="text/javascript" charset="utf-8">
      if window.location != 'http://mypage.com' {
        window.location = 'http://mypage.com';
      }
    </script>
    
    Code (markup):
     
    thehcdreamer, Apr 30, 2010 IP
  3. thehcdreamer

    thehcdreamer Peon

    Messages:
    22
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Well, if someone steals your code will probably remove this, but anyway (not tested):

    
    <script type="text/javascript" charset="utf-8">
      if window.location != 'http://mypage.com' {
        window.location = 'http://mypage.com';
      }
    </script>
    
    Code (markup):
     
    thehcdreamer, Apr 30, 2010 IP
  4. fgsg

    fgsg Well-Known Member

    Messages:
    275
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #4
    thx i will try :)
     
    fgsg, Apr 30, 2010 IP