Files
luos/thirdparty/html2ps_pdf/index.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

10 lines
185 B
PHP

<?php
$host = $_SERVER['HTTP_HOST'];
preg_match("#^(.*)/[^/]*$#", $_SERVER['REQUEST_URI'], $matches);
$uri = $matches[1];
header("Location: http://${host}${uri}/demo/index.php");
?>