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