We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
| Subject: |
|
alias (itunes music library) |
| Date: |
|
2003-06-05 19:33:18 |
| From: |
|
maarky
|
Response to: alias (itunes music library)
|
|
Remember that you have to add the Directory directive after you create the alias. For example:
Alias /musicarchive/ "/user/user_name/music/itunes/itunes music/"
<Directory "user/user_name/music/itunes/itunes music/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Also, the path in the Alias and Directory is case sensitive, so you would use "/Users", not "users".
|