projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b07f76
)
Add an .htaccess for the horde core directory that restores the rampage.php
author
Chuck Hagenbuch
<chuck@horde.org>
Sun, 24 Jan 2010 02:00:13 +0000
(21:00 -0500)
committer
Chuck Hagenbuch
<chuck@horde.org>
Sun, 24 Jan 2010 02:00:13 +0000
(21:00 -0500)
rewrite rules, and allows web access to this dir.
horde/.htaccess
[new file with mode: 0644]
patch
|
blob
diff --git a/horde/.htaccess
b/horde/.htaccess
new file mode 100644
(file)
index 0000000..
2e7c063
--- /dev/null
+++ b/
horde/.htaccess
@@ -0,0
+1,8
@@
+allow from all
+
+<IfModule mod_rewrite.c>
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^(.*)$ rampage.php [QSA,L]
+</IfModule>