Bigblock Industries wrote:
> Hi All,
>
> How do I make hits on 'http://www.myserver.com/' go to a servlet which
> now works as
> http://www.myserver.com/'servlets/the-servlet
>
> Amy
The answer to this is different for every web server, so you'd have to
check the docs. On Apache, for example, you can use the Rewrite module
to accomplish this task, by including it in your Apache build and doing
something like this:
RewriteEngine on
RewriteRule ^/$ /servlets/the-servlet/ [R]
in your httpd.conf file.
Craig McClanahan
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html