In most "check auth" (webrule authscript) I eventually have to write something like
```
STRING url := GetRequestURL();
IF (url LIKE "*/.ap/*"
OR url LIKE "*/.uc/*"
OR url LIKE "*/.publisher/*"
OR url LIKE "*/wh_services/*"
OR url LIKE "*.wrd/auth/restoresession.shtml*")
RETURN;
```
to prevent all kinds of redirect loops. This cannot be the best solution, can it? :-)