Changeset 929

Show
Ignore:
Timestamp:
03/21/07 13:11:19 (2 years ago)
Author:
donncha
Message:

Check that the file exists first. Fixes #215.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/htaccess.dist

    r912 r929  
    1010RewriteCond %{REQUEST_FILENAME} -d 
    1111RewriteRule . - [L] 
     12RewriteCond %{REQUEST_FILENAME} -f [OR] 
     13RewriteCond %{REQUEST_FILENAME} -d 
    1214RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L] 
     15RewriteCond %{REQUEST_FILENAME} -f [OR] 
     16RewriteCond %{REQUEST_FILENAME} -d 
    1317RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] 
    1418RewriteRule . index.php [L]