PHP code example of los / basepath
1. Go to this page and download the library: Download los/basepath library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
los / basepath example snippets
$app->pipe(new \LosMiddleware\BasePath\BasePathMiddleware('/site'));
$app->pipe(LosMiddleware\BasePath\BasePathMiddleware::class);
$scriptPath = dirname($_SERVER['SCRIPT_NAME']);
return [
// Use directory of script path if available, otherwise default to empty string.
'los' => [
'basepath' => strlen($scriptPath) > 1 ? $scriptPath : '',
],
// rest of the configuration ...
];