Is there a way to redirect a user to a new window by using CFLocation? As far as I know you cannot use target=_blank
in CFLocation. Is there another way to do it?>
performs a client-side redirect, but it's initiated on the server side (it sends a request with a redirect in the header), so it can't know anything about "tabs" which are a browser thing. CF doesn't know anything about what's going on in the browser.
To do the sort of thing you want to do on the client site, you need to do the browser stuff with Javascript.