From 16e5ea0cb9d56805ba9840e725be1ddd9d0cac3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Fri, 26 Jun 2015 17:07:30 +0200 Subject: [PATCH] Fixed rewrite case-insensitive with remote --- .htaccess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.htaccess b/.htaccess index 105d8c48..eb6f34c0 100755 --- a/.htaccess +++ b/.htaccess @@ -9,8 +9,8 @@ RewriteCond %{HTTPS} !=on RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] -RewriteRule ^remote/(.*) php/controller.php?id=$1 [L] -RewriteRule ^remote php/controller.php [L] +RewriteRule (?i)^remote/(.*) php/controller.php?id=$1 [L] +RewriteRule (?i)^remote php/controller.php [L] RewriteCond %{REQUEST_URI} !(/$|\.) RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]