import java.applet.*; import java.net.*; public class Redirector extends Applet { public void init() { AppletContext ac = getAppletContext(); URL oldURL = getDocumentBase(); try { URL newURL = new URL(getParameter("newhost") + oldURL.getFile()); ac.showDocument(newURL); } catch (MalformedURLException e) { } } }