DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41987>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41987

           Summary: Options inside VirtualHost ignored
           Product: Apache httpd-2
           Version: 2.2.4
          Platform: PC
        OS/Version: FreeBSD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: mod_vhost_alias
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


Options -MultiViews is ignored when set inside <VirtualHost />

Not working:
<Directory "/path">
  Options MultiViews
</Directory>
<VirtualHost *:80>
  Options -MultiViews
  DocumentRoot /path/to/vhost
</VirtualHost>

Working:
<Directory "/path">
  Options MultiViews
</Directory>
<VirtualHost *:80>
  <Directory "/path/to/vhost">
    Options -MultiViews
  </Directory>
  DocumentRoot /path/to/vhost
</VirtualHost>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to