aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPim van den Berg2018-01-16 19:26:03 +0100
committerGitHub2018-01-16 19:26:03 +0100
commitf2b6ed849fa7cc40af9fe11caf744f31459a1d0e (patch)
tree4a2d7db812badaf8a77da5102ada1d3508442a8e
parentMerge pull request #149 from zerkms/patch-1 (diff)
parentFix for Invalid command 'RewriteEngine' when mod_rewrite is not enabled (diff)
downloadapt-panopticon_cgp-f2b6ed849fa7cc40af9fe11caf744f31459a1d0e.zip
apt-panopticon_cgp-f2b6ed849fa7cc40af9fe11caf744f31459a1d0e.tar.gz
apt-panopticon_cgp-f2b6ed849fa7cc40af9fe11caf744f31459a1d0e.tar.bz2
apt-panopticon_cgp-f2b6ed849fa7cc40af9fe11caf744f31459a1d0e.tar.xz
Merge pull request #156 from Arvur/master
Fix for Invalid command 'RewriteEngine' when mod_rewrite is not enabled
-rw-r--r--.htaccess6
1 files changed, 4 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index 7cb13ca..869a74a 100644
--- a/.htaccess
+++ b/.htaccess
@@ -7,5 +7,7 @@ Options -Indexes
7 </Files> 7 </Files>
8</IfModule> 8</IfModule>
9 9
10RewriteEngine On 10<IfModule mod_rewrite.c>
11RewriteRule ^.git(ignore|/) - [F,L] 11 RewriteEngine On
12 RewriteRule ^.git(ignore|/) - [F,L]
13</IfModule>