NTLDR,
What code do I need to write in the index.php to load the vbindex.php first
This was my best guess after seening it in a different loader in a hack from another site I just changed the code to point at vbindex
// vbindex Loader
$loader = split("/", getenv(REQUEST_URI));
$n = count($loader)-1;
$loader = $loader[$n];
if (trim($loader)=="index.php") {
Header("Location: vbindex.php");
}
// End vbindex Loader
User say that there still going straght to the to the forum and not the vbindex front page.
Any help?
|