aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDenis Grinyuk2018-01-16 17:50:46 +0300
committerDenis Grinyuk2018-01-16 17:50:46 +0300
commit0c51b9a370fa3ba918debdc53de1d6336bf11399 (patch)
tree4a2d7db812badaf8a77da5102ada1d3508442a8e
parentMerge pull request #149 from zerkms/patch-1 (diff)
downloadapt-panopticon_cgp-0c51b9a370fa3ba918debdc53de1d6336bf11399.zip
apt-panopticon_cgp-0c51b9a370fa3ba918debdc53de1d6336bf11399.tar.gz
apt-panopticon_cgp-0c51b9a370fa3ba918debdc53de1d6336bf11399.tar.bz2
apt-panopticon_cgp-0c51b9a370fa3ba918debdc53de1d6336bf11399.tar.xz
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>