Make mirror of any site on your domain
add .htaccess
include("Proxy.php");
$proxy = new Proxy();
$proxy->render('http://stackoverflow.com/' . $_GET['url']);$proxy->setRequestHook(function(&$header, &$body) {
// Modify some header or body before send request
array_push($header, ['Origin' => $_SERVER["HTTP_HOST"]]);
array_push($header, ['X-Requested-With' => 'XMLHttpRequest']);
});
$proxy->setResponseHook(function(&$header, &$body) {
// Modify some header or body before render
});