I am trying to create an Alias directive with Apache 2.2, to point to a shared folder on other computer.
Apache is running on machine M1 at IP 192.168.0.103, the other machine M2, with the shared folder, is at IP 192.168.0.101.
Now I am testing M1 with Linux Ubuntu 12 and M2 with Windows 7. I am editing httpd.conf on M1. There are two Alias directives:
Alias /m1test/ "/home/test/"
Alias /m2test/ "file://192.168.0.101/test/"
Testing:
http://localhost/m1test/foo.txt- is OK!http://localhost/m2test/foo.txt- doesn't work
How can I make the second alias work?
