I have this code:
protected override IEnumerable<ShortcutUrlResolver> GetShortcutUrlResolvers() {
return new[]
{
new ShortcutUrlResolver( "someShortcut", ConnectionSecurity.SecureIfPossible, () => SmartRedirector.GetInfo( Pages.One.Two.GetInfo().GetUrl() ) ),
new ShortcutUrlResolver( "", ConnectionSecurity.SecureIfPossible, () => Pages.Portals.GetInfo() )
};
}
If I go to mysite/
, I end up at the Portals page (the second shortcut above). If I go to mysite/someShortcut, I get a error:
this page is no longer available .