summaryrefslogtreecommitdiff
path: root/fai_gestion/.htaccess
diff options
context:
space:
mode:
Diffstat (limited to 'fai_gestion/.htaccess')
-rw-r--r--fai_gestion/.htaccess12
1 files changed, 12 insertions, 0 deletions
diff --git a/fai_gestion/.htaccess b/fai_gestion/.htaccess
new file mode 100644
index 0000000..54b08e8
--- /dev/null
+++ b/fai_gestion/.htaccess
@@ -0,0 +1,12 @@
+# 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 ^(\.well-known/.*)$ $1 [L]
+ RewriteRule ^$ webroot/ [L]
+ RewriteRule (.*) webroot/$1 [L]
+</IfModule>