Files
luos/gulliver/thirdparty/html2ps_pdf/index.php

10 lines
185 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
$host = $_SERVER['HTTP_HOST'];
preg_match("#^(.*)/[^/]*$#", $_SERVER['REQUEST_URI'], $matches);
$uri = $matches[1];
header("Location: http://${host}${uri}/demo/index.php");
?>