From 99493b2af0bf91dd5cab533162c0027ed8381700 Mon Sep 17 00:00:00 2001 From: til-schneider Date: Mon, 28 Dec 2015 17:08:52 +0100 Subject: [PATCH] Fixed: Prism autoloader caused endless loop, because non-existing language files were delivered with an error page having status code 200 --- src/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.htaccess b/src/.htaccess index 1a481d8..2d72cdd 100644 --- a/src/.htaccess +++ b/src/.htaccess @@ -1,6 +1,6 @@ RewriteEngine On -RewriteCond %{THE_REQUEST} !^GET\ /.*?client/(css|js|img) +RewriteCond %{THE_REQUEST} !^GET\ .*?/client/([a-z]\.(js|css)|img/|libs/) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php [L,QSA]