From a39cb11f520d84bf8298e0f1aa82aabd81779117 Mon Sep 17 00:00:00 2001 From: Jyoti Sharma Date: Fri, 6 Jul 2018 12:03:12 +0530 Subject: SetEnv usage should be guarded mod_env may not be present on a system in which case browser will get 500 Internal Server Error. The error in apache logs say "Invalid command 'SetEnv', perhaps misspelled or defined by a module not included in the server configuration". --- .htaccess | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index 823abe80..7bfd6a95 100644 --- a/.htaccess +++ b/.htaccess @@ -8,7 +8,11 @@ Options -MultiViews - SetEnv HTTP_MOD_REWRITE On + + + SetEnv HTTP_MOD_REWRITE On + + # Uncomment this line depending of your Apache configuration # RewriteBase / -- cgit v1.2.3