Search
Recommended Sites
Related Links






   

Informative Articles

Advertising To Those With Javascript Turned Off
Just about all of the contextual advertising services and many other types of services use JavaScript to include their ads on your website. This is great because it's easy to put the code on your website, have ads running and then forget about...

Free Button Maker
A button is generally a small graphic containing text, which is used as a navigational element in a website. Web buttons can be 2D / 3D button, animated button, plastic / glass looking button, or flash button. To get buttons for your website, you...

PayPal Payment Notifications on Your Phone
On the Internet, the general rule of thumb is that when someone sends you an e-mail, you're expected to have read it within 24 hours. If you sell a hands-on product, like a high ticket item or coaching program, you might want to be notified of a...

Web Accessibility: The Basics
What is web accessibility & why is it important? Web accessibility is about making your website accessible to all Internet users (both disabled and non-disabled), regardless of what browsing technology they're using. In addition to complying with...

Write A Newsletter To Get Site Visitors To Return!
How many visitors to your site *ever* return? Not as many as you would like, I bet! It is a lot easier and less time-consuming to promote your site to people who have *already* visited. So how do you do that? Well, you could: - Ask people to...

 
PHP Redirect

A PHP Redirect automatically transfers a web user from one URL to another. For example, typing foo.com in the browser automatically transfers the user to another URL bar.com.

The PHP Redirect command:

<?php
header("location: [some-url]");
?>

Replace [some-url] with the URL where you want the redirection to take place.

For example,

header("location: ./version2/index.html");
=>redirect to "index.html" page in subfolder called "version2"

header("location: http://www.yahoo.com");
=>redirect to a website called yahoo.com

If PHP is not available, it's also possible to use other redirects:

* HTTP Redirects
<meta http-equiv="Refresh" content="[time]; URL=[some-url]">

Replace [time] with seconds. This will pause the browser for the specified number of seconds. Replace [some-url] with the target URL you want to redirect.

For example,
<meta http-equiv="Refresh" content="5; URL=http://www.yahoo.com">;

The above HTTP based redirect needs to be in the <header></header> region of the HTML code.

* JavaScript Redirects

<script language=javascript>
setTimeout("location.href='[some-url]'", [time]);
</script>

Replace [time] with milliseconds. This will pause the browser for the specified number of seconds. Replace [some-url] with the target URL you want to redirect.

For example,
setTimeout("location.href='http://www.yahoo.com'", 5000);

The above JavaScript based redirect can be either in the <header></header> or <body></body> region of the HTML code.

Usually a PHP redirect is much more reliable than other form of redirects like HTTP redirect or JavaScript based redirects. For example a JavaScript redirect may not work if a user's browser settings has JavaScript turned off.

The reason why PHP redirects will work no matter what settings users have on their browser is because PHP is server side script. It will not depend on browser settings that may affect JavaScript which is parsed on the client-side/user-side.

About the Author
Sanjib Ahmad, Freelance Writer and Product Consultant for Business.Marc8.com - Best Selling Business Books. You are free to use this article in its entirety as long as you leave all links in place, do not modify the content, and include the resource box listed above.

Sign up for PayPal and start accepting credit card payments instantly.