I'm trying to put this directory we used to have as a virtual directory under IIS 3 as an alias in apache. The directory that IIS used was "\\cah_server\SophosEM\CIDRoot". So in the httpd.conf I put this..
As is, the server wont load... if I change all the "/" to "\" like windows it'll boot but I get a 404. If I change the first part of the UNC to "\\" with the rest still "/" it will also load but again a 404.The folder has permissions for everyone so apache should be able to see it. Any ideas? I've done this numerous times under linux but never windows...
oh yea the server is NT 4 if that makes any difference
Code:
Alias /sophos "//cah_server/SophosEM/CIDRoot"
<Directory "//cah_server/SophosEM/CIDRoot">
Options Indexes MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
As is, the server wont load... if I change all the "/" to "\" like windows it'll boot but I get a 404. If I change the first part of the UNC to "\\" with the rest still "/" it will also load but again a 404.The folder has permissions for everyone so apache should be able to see it. Any ideas? I've done this numerous times under linux but never windows...
oh yea the server is NT 4 if that makes any difference