https://bz.apache.org/bugzilla/show_bug.cgi?id=64235

--- Comment #2 from Rami Mohammad <[email protected]> ---
(In reply to Eric Covener from comment #1)
> something hiding in vhost configs w/ <Location /> ?

This is my vhost :

<VirtualHost *:80>
  ServerName www.mmm.com
  ServerAdmin [email protected]
  ErrorLog /home/mmm/logs/mmm-error.log
  CustomLog /home/mmm/logs/mmm.com-access.log combined
  CustomLog /home/mmm/logs/mmm.com-timed.log timed
  DocumentRoot /home/mmm/mmm_memory/public
  AddDefaultCharset UTF-8
  DirectoryIndex index.php


  <Directory /home/mmm/mmmn_memory/public>
    Options -Indexes
    AllowOverride None
    Require all granted

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteCond %{REQUEST_FILENAME} !^.*\.(gif|jpg|png|css|js|swf|xml|php)$
    RewriteRule !\.(js|ico|gif|jpg|jpeg|png|css)$ index.php
    # Make sure proxies don't deliver the wrong content
  </Directory>

  <DirectoryMatch (^#.*#$|.*~$|^\..*)>
    Require all denied
  </DirectoryMatch>

  <FilesMatch (^#.*#$|.*~$|^\..*)>
    Require all denied
  </FilesMatch>
</VirtualHost>

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to