Glad you got it resolved, but if you need a more easier solution or if other members might be interested.
Create a go.php file and add the following code:
working: xyz.com/go.php?go=pokerroomPHP Code:<?php
$link['pokerstars'] = "http://www.pokerstars.com";
$link['ladbrokes'] = "http://www.ladbrokes.com";
$site = str_replace(array(" ",",",".","%"),"",$_GET['go']);
header("Location: ".$link[$site]."");
?>
This htaccess mod rewrite would make it accessible through xyz.com/go/pokerroom.php
RewriteEngine On
RewriteRule ^go/([^/]*)\.php$ /go.php?go=$1 [L]












LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks