diff options
author | cash <cash.costello@gmail.com> | 2011-12-14 19:54:24 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-12-14 19:54:24 -0500 |
commit | f84e36f0690c87f30a292953562e80b280650540 (patch) | |
tree | d5eed70d95749339ed0c8a1ad8f216d966f5284d | |
parent | 636b3a15ccd62d64a5708b31d34d176c8fd59ecb (diff) | |
download | elgg-f84e36f0690c87f30a292953562e80b280650540.tar.gz elgg-f84e36f0690c87f30a292953562e80b280650540.tar.bz2 |
Refs #3341 allow files in the base of Elgg go through page handling system
-rw-r--r-- | htaccess_dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htaccess_dist b/htaccess_dist index bf163c69e..526299b94 100644 --- a/htaccess_dist +++ b/htaccess_dist @@ -125,7 +125,7 @@ RewriteRule ^rewrite.php$ install.php # Everything else that isn't a file gets routed through the page handler RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule ^([A-Za-z0-9\_\-]+)$ engine/handlers/page_handler.php?handler=$1 [QSA] +RewriteRule ^([A-Za-z0-9\_\-.]+)$ engine/handlers/page_handler.php?handler=$1 [QSA] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f |