Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
<?php header("location:$your_link_variable"); ?>
or:<?php header("location:".$your_link_variable); ?>
(has to be before any other output though, so before your link output or any errors).<?php header("location:".$siteurl."/index.php?level=picture&id=".$id); ?>
$config["use_mod_rewrite"] = 0;
} else {
$config["baseurl"] = "http://".$_SERVER["HTTP_HOST"]. substr($_SERVER["PHP_SELF"],0,strrpos($_SERVER["PHP_SELF"],"/")) . "/";
}
edit it to read: $config["use_mod_rewrite"] = 0;
} else {
if ($config["use_mod_rewrite"] == 1) {
$config["baseurl"] = "http://".$_SERVER["HTTP_HOST"]. substr($_SERVER["PHP_SELF"],0,strrpos($_SERVER["PHP_SELF"],"/")) . "/";
}
}
1 to 12 of 12