reasonableframework/route/assetproxy.php

12 lines
270 B
PHP
Raw Normal View History

2018-06-22 02:14:03 +00:00
<?php
loadHelper("webpagetool");
$path = str_replace("../", "", get_requested_value("path"));
$server_path = "./" . $path;
$client_path = base_url() . $path;
if(file_exists($server_path)) {
$response = get_web_page($client_path, "get");
echo $response['content'];
}