Feedback - Updates (Archived)

  • Thread starter Thread starter Sushubh
  • Start date Start date
  • Replies Replies 8,082
  • Views Views 786,689

How is the forum performing for you wrt speed?


  • Total voters
    42
Status
Not open for further replies.
google uses a unique string for their redirections so cannot use them.

the service you suggested is well...

The site ahead contains malware
 
i have switched to another service for the time being. would ask vedant to code something for me for a local solution. better to use something local than a third party service that can go malware anytime.
 
Script needs to output this:

should be easy in PHP.

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <meta http-equiv="refresh" content="1; URL=http://BLAH.COM/">
  <title>Broadband Forum redirection</title>
</head>
<body>
<p>Please wait while you're being redirected to ...</p>
<p><a href="http://BLAH.COM/">http://BLAH.COM/</a></p>
</body>
</html>
 
Thats what linkonym did!! :D (all anonymizer use it)

I simply removed scripts from their HTML!

Change content=1 to content=0 for immediate redirection.
 
Content=1 allows user 1 second to stop redirection incase the link was clicked by mistake!
 
Apparaently simply adding rel=noreferrer in a tag also anonymizes the link.

For example:
HTML:
<a rel="noreferrer" target=_blank href=http://google.com>http://google.com</a>
 
Status
Not open for further replies.
Back