- Readme First! - Read and follow the rules, otherwise your posts will be closed
There are currently, 112 guest(s) and 2 member(s) that are online. You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - GoogleTap Reborn [ ]
Author
Message
Evaders99
Site Admin
Joined: Aug 17, 2003
Posts: 12342
Posted:
Tue May 02, 2006 5:30 pm
saaa
Nuke Cadet
Joined: Nov 18, 2006
Posts: 7
Posted:
Fri Jan 19, 2007 9:15 pm
Where can i download GT_Distro???
nickr914
Nuke Cadet
Joined: May 21, 2008
Posts: 1
Posted:
Tue May 20, 2008 4:53 pm
I kinda redid it, i couldnt get it working 100% but what i did seems to work great.
Let me know
.htaccess
RewriteRule /index.html /index.php
RewriteRule ^([a-zA-Z0-9]*_[a-zA-Z0-9]*)-([a-zA-Z0-9])-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1&$2=$3&$4=$5
RewriteRule ^([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1&$2=$3&$4=$5&$6=$7
RewriteRule ^([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1&$2=$3
RewriteRule ^([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1&$2=$3&$4=$5
RewriteRule ^([a-zA-Z0-9]*)_([a-zA-Z0-9]*).html modules.php?name=$1_$2
RewriteRule ^([a-zA-Z0-9]*_[a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1&$2=$3
RewriteRule ^([a-zA-Z0-9]*_[a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*_[a-zA-Z0-9]*).html modules.php?name=$1&$2=$3
RewriteRule ^([a-zA-Z0-9]*_[a-zA-Z0-9]*)-([a-zA-Z0-9]_[a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1&$2=$3
RewriteRule ^([a-zA-Z0-9]*)_([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*)-([a-zA-Z0-9]*).html modules.php?name=$1_$2&$3=$4&$5=$6&$7=$8.gif
RewriteRule ^([a-zA-Z]*).html modules.php?name=$1
header.php
define('NUKE_HEADER', true);
after->require_once("mainfile.php");
add
ob_start();
function replace_for_mod_rewrite(&$s) {
$s = preg_replace("/&/i", "&", $s);
$s = preg_replace("/modules\.php\?name=(\w+)&(\w+)=(\w+)&(\w+)=(\w+)&(\w+)=(\d+)/i", "$1-$2-$3-$4-$5-$6-$7.html", $s);
$s = preg_replace("/modules\.php\?name=(\w+)&(\w+)=(\w+)&(\w+)=(\w+)/i", "$1-$2-$3-$4-$5.html", $s);
$s = preg_replace("/modules\.php\?name=(\w+)&(\w+)=(\w+)/i", "$1-$2-$3.html", $s);
$s = preg_replace("/modules\.php\?name=(\w+)/i", "$1.html", $s);
return $s;
}
footer.php
before->foot();
$contents = ob_get_contents();
ob_end_clean();
echo replace_for_mod_rewrite($contents);
Goto page Previous 1 , 2 , 3
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum