Hi there,
quick questions:
states that it is possible to chain redirections (a->b, b->c, c->d will be merged to a->d) (transitive closure).
Is it sufficient to add the related redirections directly to the Redirection storage like
storage.add'(/a', '/b')
storage.add('/b', '/c')
storage.add('/c', '/d')
or is there something else needed in addition?
-aj