Add an .htaccess for the horde core directory that restores the rampage.php
authorChuck Hagenbuch <chuck@horde.org>
Sun, 24 Jan 2010 02:00:13 +0000 (21:00 -0500)
committerChuck 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]

diff --git a/horde/.htaccess b/horde/.htaccess
new file mode 100644 (file)
index 0000000..2e7c063
--- /dev/null
@@ -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>