'_blank', // default alias '_blank'. {alias} is substituted with this value below. Allows for customization within the admin area. 'regex' => '^{alias}/other/?$', // matched against url, and if true, redirected to 'redirect' below. 'sef' => '{alias}/other/', // used by e107::url(); to create a url from the db table. 'redirect' => '{e_PLUGIN}_blank/_blank.php?other=1', // file-path of what to load when the regex returns true. ); $config['index'] = array( 'regex' => '^_blank/?$', // matched against url, and if true, redirected to 'redirect' below. 'sef' => '_blank', // used by e107::url(); to create a url from the db table. 'redirect' => '{e_PLUGIN}_blank/blank.php', // file-path of what to load when the regex returns true. ); $config['parked'] = array( 'domain' => 'parked-domain.com', 'regex' => '^custom/?$', // matched against url, and if true, redirected to 'redirect' below. 'sef' => 'custom', // used by e107::url(); to create a url from the db table. 'redirect' => '{e_PLUGIN}_blank/blank.php?custom=1', // file-path of what to load when the regex returns true. ); return $config; } }