Here is the code for simple PHP page redirect. The search engine friendly way of redirecting is the 301 redirect.
1 2 3 4 | <?php Header("HTTP/1.1 301 Moved Permanently"); header( 'Location: http://www.yoursite.com/page.html' ) ; ?> |
Note that if you do not include the first Header line above, the redirect still works. But, instead of a 301 redirect, now it becomes a 302 (temporary) redirect.
Now if you want to redirect to perticluer user page then you need to include user id in the url. Here is the code:
1 2 3 | <?php header("Location: userpage.php?id=".$userId); ?> |
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Resources #Terms of Use
Copyright©2012 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com