I\'ve searched through stackoverflow for a similiar problem, but none of the solutions seem to work.
I\'m running WAMP and have a network drive T:\\
whi
You need to use forward slashes instead of backslashes or escape them all using an additional backslashas well as enclosing the paths in quotes as stated by Xophmeister. Eg:
Alias /p "//ps-file.server_location.edu/A$/"
Order allow,deny
Allow from all
or
Alias /p "\\\\ps-file.server_location.edu\\A$\\"
Order allow,deny
Allow from all
You are correct to use a UNC path unless you create a mapped drive in the user profile being used to run the apache service.