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;
    }