adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / .htaccess
diff --git a/production/example_apps/shared_calendar/.htaccess b/production/example_apps/shared_calendar/.htaccess
new file mode 100644 (file)
index 0000000..bc1dd9c
--- /dev/null
@@ -0,0 +1,11 @@
+# Uncomment the following to prevent the httpoxy vulnerability
+# See: https://httpoxy.org/
+#<IfModule mod_headers.c>
+#    RequestHeader unset Proxy
+#</IfModule>
+
+<IfModule mod_rewrite.c>
+    RewriteEngine on
+    RewriteRule    ^$    webroot/    [L]
+    RewriteRule    (.*) webroot/$1    [L]
+</IfModule>