Hi,

On Mon, 9 Jun 2003, Brent L. Cox wrote:

> and I using red hat 9.0 I a new to linux and very new to 
> apache I have always used IIS. Basicly with I want to do 
> is have this URL http://localhost/MP3s point to the 
> /mnt/diskFAT/MP3s

Edit /etc/httpd/conf/httpd.conf as root and add the following line:

Alias /MP3s/ "/mnt/diskFAT/MP3s/"

Then restart you httpd server:

service httpd stop
service httpd start

If you fail in listing the contents of the directory, then add the 
following lines and repeat the restart procedure:

<Directory "/mnt/diskFAT/MP3s">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>



Have fun :)

Regards,
--
Devrim GUNDUZ
[EMAIL PROTECTED]                               [EMAIL PROTECTED] 
                        http://www.tdmsoft.com
                        http://www.gunduz.org


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to