Jump to content

Why would be vhosts say forbidden?


tibberous

Recommended Posts

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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.