tibberous Posted November 25, 2009 Share Posted November 25, 2009 In httpd-vhosts.conf: <VirtualHost 127.0.0.3:80> ServerAdmin trenttompkins@site.com DocumentRoot "C:/dev" ServerName 127.0.0.3 ServerAlias 127.0.0.3 </VirtualHost> in c:\dev I have a file called index.htm If I go to: http://127.0.0.3 I get a forbidden error And if I go to: http://127.0.0.3/index.htm I get: You don't have permission to access /index.htm on this server. Any idea what would be wrong? The regular server works. Quote Link to comment Share on other sites More sharing options...
tibberous Posted November 25, 2009 Author Share Posted November 25, 2009 Fixed. Since c:\dev is outside the apache folder, I had to add this to the main httpd.conf file: <Directory "C:/dev"> Order allow,deny Allow from all Options +Indexes </Directory> The +Indexes was needed, but since it's just my dev directory, I figured I might at well turn it on. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.