asp.net webform 友好路由的问题,求大神解决

一个webform 的项目使用了友好路由代码如下。
public static class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
var settings = new FriendlyUrlSettings();
settings.AutoRedirectMode = RedirectMode.Permanent;
routes.EnableFriendlyUrls(settings);

    }
}

        void Application_Start(object sender, EventArgs e)
    {
         //在应用程序启动时运行的代码
        RouteConfig.RegisterRoutes(RouteTable.Routes);
    }

    问题是在这个网站中有动态生成子站这个功能,也就是说程序会动态生成文件夹,然后复制一些程序文件到文件夹中,现在使用了友好路由,这些动态生成的文件全部访问不了,请问有好的解决办法吗?
    求各位大神指点!

routes.Ignore(现有的文件夹)