ALL >> Computers >> View Article
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
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,
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.
Add Comment
Computers Articles
1. Ssl/ Tls Security & Data Encryption ServicesAuthor: brainbell10
2. Buy Laptop, Printers & Headphone Online In Pakistan
Author: jbsonline
3. How To Build A Personalized Gaming Computer For Maximum Performance?
Author: Jack Williams
4. Voice Ai For Customer Experience India | Ai Voice India | Ai Virtual Agent For Customer Service India
Author: Viva
5. Market Forecast: Customer Identity And Access Management
Author: Umangp
6. The Evolution Of Weapon Tracking In 2026: Smarter, Faster, And More Reliable
Author: TrackerIoT
7. Smarter File Management: How Rfid Is Changing The Way We Handle Physical Records
Author: TrackerIoT
8. France E-commerce Marketplace Data Scraping For Competitive Advantage
Author: iwebdatascraping
9. Manufacturing Identity Security Is No Longer An It Problem — It's A Business Risk
Author: Mansoor Alam
10. What Is Student Retention Software? A Complete Guide For Universities
Author: Brenda Joyce
11. Scrape Bookmyshow Data For Real-time Entertainment Insights
Author: iwebdatascraping
12. Hyderabad’s Best Barcode Printer Dealers For Retail & Warehouse
Author: prime pos
13. Roi Training Tools For Sales Teams: How Training Drives Performance
Author: Umangp
14. Melon Playground Game
Author: Melon Playground
15. Pincode Level Keyword Data Analytics From Zepto & Instamart
Author: Actowiz Metrics






