You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by faisal gillani <fa...@yahoo.com> on 2002/03/04 21:02:24 UTC

Re: newbie question xxxx

Thanks Owen for the reply it really helped me a lot 
but please help me with this options indexes thing as
i really want to enable this directory browsing so
users can get their data .. 
i have a configured a Alias called /movies 
so how to make client see data on the partition when
they type http://clickonline.net/movies ?
by default it is not showning anything

thanks
Faisal


--- Owen Boyle <ob...@bourse.ch> wrote:
> faisal gillani wrote:
> > 
> > hello i just want to switch from MS IIS server
> simply
> > cause i am fed up with it ..
> > cause you tell me how can i create virtual
> directories
> > for example my web site is http://clickonline.net
> this
> > is fine but i dont know how to create this
> > http://clickonline.net/music espesially when this
> > directory is on a seprate partition ...
> 
> I think you need either VirtualHosts -
> http://httpd.apache.org/docs/vhosts/index.html or
> the "Alias" directive
> -
>
http://httpd.apache.org/docs/mod/mod_alias.html#alias
> 
> Read the docs first, then post back if there's
> anything that you don't
> understand.
> 
> > also i want to turn On directory browsing so that
> user
> > can see what files exisist ..
> 
> Options Indexes
> 
> either at server-config level or in the <Directory>
> container.
> 
>
---------------------------------------------------------------------
> The official User-To-User support forum of the
> Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for
> more info.
> To unsubscribe, e-mail:
> users-unsubscribe@httpd.apache.org
> For additional commands, e-mail:
> users-help@httpd.apache.org
> 


__________________________________________________
Do You Yahoo!?
Yahoo! Sports - sign up for Fantasy Baseball
http://sports.yahoo.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: newbie question xxxx

Posted by Owen Boyle <ob...@bourse.ch>.
faisal gillani wrote:
> 
> Thanks Owen for the reply it really helped me a lot
> but please help me with this options indexes thing as
> i really want to enable this directory browsing so
> users can get their data ..
> i have a configured a Alias called /movies
> so how to make client see data on the partition when
> they type http://clickonline.net/movies ?
> by default it is not showning anything

If you have a directory called movies under your document root, then the
URL should find it. Check you directory layout - for example, if you
have:

DocumentRoot /path/to/docroot

then your movies should be in /path/to/docroot/movies. Then
http://clickonline.net/movies will end up in that directory.

If you also have:

Options +Indexes

in the same VH, then the user should get a listing.

Rgds,

Owen Boyle.

PS - if not, post the error message in the log-file.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org