Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] Folder Alias in Jetty

I need to setup a virtual directory or folder alias in Jetty.  In Apache it is called an alias where you can set them like this:

<VirtualHost *:80>
     ServerName groups.com
     DocumentRoot  D:\www\mysite
     Alias /bob C:\groups\people\bob
</VirtualHost>

Then URL that come in to http://groups.com/bob would server files from the /bob directory.  I don't want a new context for every alias.

--
Andrew Penhorwood
andrew@xxxxxxxxxxxx
www.coldbits.com

Back to the top