Contao\Environment::indexFreeRequest PHP Метод

indexFreeRequest() защищенный статический Метод

Return the request string without the index.php fragment
protected static indexFreeRequest ( ) : string
Результат string The request string without the index.php fragment
    protected static function indexFreeRequest()
    {
        $strRequest = static::get('request');
        if ($strRequest == static::get('script')) {
            return '';
        }
        return $strRequest;
    }