On 2002.01.04, Ariel E. Carn? <[EMAIL PROTECTED]> wrote: > I'm trying to redirect from AOLServer to another web server (in this case is > IIS), both box are in the same network.
nsvhr does not do redirects. It's a reverse proxy, which is an entirely different beast. You cannot use nsvhr to accomplish what you're trying to do. > Now in my case I want to redirect either "luke:11000/yoda" to "http://yoda" > or "/yoda" (in the server luke) to http://yoda. Neither of that > configuration are working. In the document root of luke:11000/yoda, create a file called index.adp and in it put: <% ns_returnredirect http://yoda %> Make sure to include index.adp in the DirectoryFile parameter of your nsd.tcl file: ns_param DirectoryFile "index.html,index.adp" and, don't forget to enable ADP parsing for your AOLserver. -- Dossy -- Dossy Shiobara mail: [EMAIL PROTECTED] Panoptic Computer Network web: http://www.panoptic.com/ "He realized the fastest way to change is to laugh at your own folly -- then you can let go and quickly move on." (p. 70)
