answersLogoWhite

0

Using a Meta Refresh. Place this on your page.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How to make a webpage go to the next in a specified time automatically?

The refresh tag is used to reload or redirect web pages. The time to wait before doing that is given in seconds.


How do you create a redirect webpage?

If you are using PHP you could use this code: (In the <head>) <?php HEADER("Location: http://www.rasclerhys.com"); ?> That should automatically take you to "www.rasclerhys.com"


How does one create a 301 redirect?

A 301 redirect is a script one adds to their webpage when they move domains. One must ensure to create a new link on both versions of their domain to ensure persons visiting the old site will automatically be directed to the correct one.


How can you get the solution for gmail webpage has redirect loop problem?

just need to clear the Cookies for solving this redirect issue


How do you stop webpage to redirect to another webpage you don't want?

You can stop your webpage from redirection to another page. For this you just have to remove the anchor tag.


What if your smallworlds wont load it says This webpage has a redirect loop The webpage at httpwwwsmallworldscomhome has resulted in too many redirects What can you do?

If you are getting the message that "This webpage has a redirect loop. The webpage at httpwwwsmallworldscomhome has resulted in too many redirects," you would have to open a new browser page and type the main page of the website in and try to navigate to your page from there.


How do you redirect your website to an optimized iPhone version?

Put this code on the webpage you want to redirect: <script language=javascript> <!-- if((navigator.userAgent.match(/iPhone/i)) (navigator.userAgent.match(/iPod/i))) { location.replace("*REDIRECT LINK HERE*"); } --> </script>


How do you make and image automatically switch to a webpage?

You anchor it to an URL. You would like to have the image send a visitor to another webpage. Add this code, direcly above the image code <a href="another webpage address"> and this code direcly after the image code </a> This will made the image a clickable link to "another webpage address".


Does wamu.com automatically redirect to the Chase Bank website now?

The website you listed does indeed automatically redirect to the Chase Bank website now. Therefore, if you were previously using the original site listed, you will be able to retrieve the Chase bank quickly.


Website Redirect 301 Code?

A 301 signals a permanent redirect from one URL to another, meaning all users that request an old URL will be automatically sent to a new URL.


Where can one find a guide on how to make a webpage?

If you want to create a website it's best to learn HTML, CSS and or PHP first. It's the basics on how to make a web page. If you learned it, you'll automatically be able to create one.


How do you give href toanother php page?

Here is the code below to redirect a webpage using php: <?php header('Location: url of the webpage'); // example: header('Location: index.php') exit; // exit after redirection is very important as php executes code line by line ?>