tibberous Posted November 25, 2009 Share Posted November 25, 2009 In httpd-vhosts.conf: <VirtualHost 127.0.0.3:80> ServerAdmin [email protected] 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. Link to comment https://forums.phpfreaks.com/topic/182942-why-would-be-vhosts-say-forbidden/ 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. Link to comment https://forums.phpfreaks.com/topic/182942-why-would-be-vhosts-say-forbidden/#findComment-965608 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.