So you have to redirect something that has 100K of files to a new site
how can you do it:
this snippet of code I’ve use it for a wordpress website, just insert the following code in the index.php in the root folder
header(“HTTP/1.0 301 Moved Permanently“);
$page = $_SERVER[‘REQUEST_URI‘];
header(“Location: http://thewewpage.com$page”);
example: http://example.com/index.php?arg=2&arg=3
will redirect to http://thenewpage.com/index.php?arg=2&arg=3
cute no ?