url - Advanced Redirect HTML -


the follow url, when inserted in twitter, facebook, etc, displays destination, when clicked, goes one. how make that?

url: http://isqua.work/new/hard/209

the few ways implement this.

  1. html - setting href different anchor text.

    <a href="http://redirect.com">http://maskurl.com</a>

  2. redirect landing page via 301/2 redirect server. example in php. code should hosted on maskurl.com.

    header ("location: http://redirect.com");

  3. redirect using javascript of landing page. code on maskurl.com.

    window.location = "http://redirect.com";

  4. i'm guessing referring to, tinyurl encoding. facebook registers longer url database , assigns new shorter url. tinyurl.com gives example. can enter url in box @ top , returns alternative url redirects longer url.


Comments

Popular posts from this blog

How to provide Authorization & Authentication using Asp.net, C#? -

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

How to use Authorization & Authentication in Asp.net, C#? -