View Single Post
Old 03-23-2017, 04:01 PM  
Bladewire
StraightBro
 
Bladewire's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,229
Code:
<?php
 
$redirect_page = "https://www.example.com/page-two.php";
 
if($_SERVER['QUERY_STRING']){
 
$query_sign = "?";
 
}else{
 
$query_sign = "";
 
}
 
header("Location: $redirect_page.$query_sign".$_SERVER['QUERY_STRING'], true, 301);
 
exit;
 
?>
__________________


Skype: CallTomNow

Bladewire is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote