From 8afe0453eba9dbc34fcc0fd9ad9f0db819cead8b Mon Sep 17 00:00:00 2001 From: Emi Polak Date: Sat, 27 Apr 2013 22:18:13 +0300 Subject: [PATCH] added NC in the RewriteRule example to make the match case-insensitive (it will match JPG for example) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33b4d93..30e4784 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ Open the `.htaccess` file in your webroot and paste in the following: ```bash #### Munee .htaccess Code Start #### -RewriteRule ^(.*\.(?:css|less|scss|js|coffee|jpg|png|gif|jpeg))$ munee.php?files=/$1 [L,QSA] +RewriteRule ^(.*\.(?:css|less|scss|js|coffee|jpg|png|gif|jpeg))$ munee.php?files=/$1 [L,QSA,NC] #### Munee .htaccess Code End #### ```