Redirect Page..yes I need this one for learning what I'm doing and planing. This link had gave me enough information about redirect page;
How to apply redirect code?
example code, (Code is placed between HEAD Section);
<META HTTP-EQUIV="Refresh" CONTENT="3; url=http://www.#.com">
here; "3" is refer to how many seconds till the page redirects, while "http://www.#.com"is refer to landing page purposed.
NOTES;
For use purpose in ASP Server, the code applied as follow;
<% response.buffer = true NextPage = "http://..." response.redirect NextPage %>
However, you do not have control over the time element. It redirects immediately.
Some search engines will not index the referring page, just the destination. Other SEs may interpret a meta refresh as SPAM. Placing your redirect code in an external file will avoid both. To solve, create a .txt file with this:
window.location.replace("http://www.your_domain.com/page.html")
Rename it as a JS file, example: redirect.js
Then in the HEAD section of the redirecting page, add:
<script type="text/javascript" src="/redirect.js"></script>
Still None Awesome so far » Be the 1st Awesome to How to make a redirect page
Post a Comment
Let others appreciate you trough what you said