How to Make Redirect Page | Redirect HTML
66HTML Redirection is often used for many purposes. One of the most important is for PPC redirecting. Since Google Adwords doesn't allow redirection, we have to turn to Yahoo Search Marketing to fullfil our task. I've never used Microsoft Adcenter yet, I don't know if this works for that. You can try and give me the answer.
How to Make A Redirect Page?
- Open Your Internet Explorer or any other web browser. Enter "about:blank" in the address column and press enter.
- Click the File menu and click save, input your preferred html page name.
- Copy the content down below
- Right click the html file, click edit, paste the content we previously copied, click save to finish.
Attention!
- Replace the "http://yourURL.com" with the right web address you want.
- There're totally 3 places you need to replace
Learn More About PPC
Copy the Content
<html>
<head>
<title>Loading page...</title>
<meta http-equiv="refresh" content="0;URL=http://yourURL.com">
<script>
url='http://yourURL.com';
if(document.images) { top.location.replace(url); }
else { top.location.href=url; }
</script>
</head>
<body>Loading
<a href=http://yourURL.com>page</a>...
</body>
</html>
PrintShare it! — Rate it: up down flag this hub







