If you are using basic authentication on the Apache webserver then what you are asking is not possible without recompiling Apache to support custom authentication.
Apache pops up a little dialogue box when you log in. If your login fails then nothing happens. If your login succeeds then you go where you want to go.
Those are your choices. If you want a customized error screen you are out of luck unless you recompile. | [reply] |
Unfortunately, I am rather unfamilar with CGI, but I do know (or think I know) that that would be a redirect (i think). I know with JSPs that you can use response.sendRedirect("somepagehere") (or something similar). I would be surprised if CGI coudnt do the same thing. Anybody help out and confirm this?
thanks!
E-Bitch
adendum: or better yet, you could shoot out a meta redirect tag like this:
<META HTTP-EQUIV='refresh' CONTENT="0;URL='http://www.whatever.com/sub
+mitsuccessful.html'">
in the head. Its a bit of a hack, but it would work. | [reply] [d/l] [select] |