url - Advanced Redirect HTML -
the follow url, when inserted in twitter, facebook, etc, displays destination, when clicked, goes one. how make that?
the few ways implement this.
html - setting href different anchor text.
<a href="http://redirect.com">http://maskurl.com</a>redirect landing page via 301/2 redirect server. example in php. code should hosted on maskurl.com.
header ("location: http://redirect.com");
redirect using javascript of landing page. code on maskurl.com.
window.location = "http://redirect.com";
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
Post a Comment