You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
364 B
12 lines
364 B
<?php
|
|
|
|
/**
|
|
* SPDX-License-Identifier: EUPL-1.2
|
|
* Authors: see /README.md
|
|
*/
|
|
chdir(dirname(__DIR__,2));
|
|
$GLOBALS['PicoVendorsDirectoryRelativeLevels'] = 1;
|
|
$_SERVER['SCRIPT_NAME'] = dirname($_SERVER['SCRIPT_NAME'],2).'/index.php';
|
|
$_SERVER['QUERY_STRING'] = 'sub&' . ($_SERVER['QUERY_STRING'] ?? '') ;
|
|
$_SERVER['PICO_URL_REWRITING'] = true;
|
|
include 'index.php';
|
|
|