mirror of
https://github.com/php/web-php.git
synced 2026-04-01 12:12:16 +02:00
7 lines
202 B
PHP
7 lines
202 B
PHP
<?php
|
|
// Simulate a /images shortcut call
|
|
$_SERVER['REQUEST_URI'] = '/images';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/error.php';
|
|
?>
|