how do I use this php redirect on my pages?
PHP Code:
<?php
$referrer = $_SERVER['HTTP_REFERER'];
if (preg_match("/site1.com/",$referrer)) {
header('Location: http://www.customercare.com/page-site1.html');
} elseif (preg_match("/site2.com/",$referrer)) {
header('Location: http://www.customercare.com/page-site2.html');
} else {
header('Location: http://www.customercare.com/home-page.html');
};
?>
The guestbook/comments script is here:
http://www.web-user.info/enlighten/guestbook.php
I put it on this page here:
http://www.web-user.info/enlighten/index.php
But when a person clicks on the post button you are taken to the guestbook page.When you use the back button,you see it posted your comment but took you away to the other page.
CAn the above be made to redirect a person if they go to that comments page from the index page?