I am developing a
Jsp application where in I have links to open
Word .doc files. The problem is the entire URL of the
doc file with the directory structure on the server (physical location of the file on the unix server) is displyed on the browser when the users click the hyperlink.
I do not want to display the file location on the browser. Is there a way to do this.
example: filename /home/Directory/Dir1/test.doc
/home/Directory is mapped as the root directory on the web server.
When the user clicks this link he sees
http://localhost:<port>/Dir1/test.doc I want to hide the /Dir1/test.doc portion of the URL.
Thanks, Pete