View Single Post
  #9   Spotlight this post!  
Unread 06-07-2004, 10:08
Mike AA's Avatar
Mike AA Mike AA is offline
Programmer and Mentor
AKA: Mike Aalderink
FRC #3458 (Code Blue)
Team Role: Programmer
 
Join Date: Jan 2003
Rookie Year: 1999
Location: Holland, Mi
Posts: 698
Mike AA is a splendid one to beholdMike AA is a splendid one to beholdMike AA is a splendid one to beholdMike AA is a splendid one to beholdMike AA is a splendid one to beholdMike AA is a splendid one to beholdMike AA is a splendid one to beholdMike AA is a splendid one to behold
Send a message via MSN to Mike AA
Unhappy Re: Change drive letter with HTML

Quote:
Originally Posted by MikeDubreuil
What you need to setup is called an alias. Technically, an alias maps to a directory that is not in the web server's document root. I would try modifying the Apache config file with something like the following:

Code:
Alias /shareware_dir "X:\shareware\"
<Directory "X:\shareware">
       Options Indexes FollowSymLinks MultiViews ExecCGI
       AllowOverride All
       Order allow,deny
       Allow from all
</Directory>
ok, I tried that, I'm not getting it to work, I've changed my coding and directories to shareware to make it a little easier, within the above code I changed x to d because the files I want to access are on my d drive. What am I missing? Alias' are loaded.