Issue server: Windows 2008
Apache Version: 2.2
Ive been having issues getting an alias to work on a Windows Server 2008 box. The same code is config is working fine on one of my test environments that runs Windows 2003.
Its very simple. I just need an alias that moves the request to a local file structure on the same server apache is running from.
What works on 2003:
<IfModule alias_module>
#alias attempt
Alias /pages/images/img C:/folder/anotherFolder/images/img
</IfModule>
<Directory C:/folder/anotherFolder/images/img>
Order allow,deny
Allow from all
</Directory>
This works great in 2003, its grabbing the files from the local location outside of the project.
I have done the same setup on a 2008 and Apache starts up but the alias appears to never be used sense the new directory is never grabbed.
Also note that on 2008 Apache is running on the local system account with the folder that needs to be accessed shared through windows sharing along with the same directory sharing in apache.
Any idea why this might not be working in 2008?