From dd015ff76a08fbd32577c94ec68358d81511ad78 Mon Sep 17 00:00:00 2001 From: sminnee Date: Wed, 13 Oct 2010 02:32:36 +0000 Subject: [PATCH] ENHANCEMENT Removed extension specific RewriteCond from .htaccess, install.php and rewritetest.php to allow for broader range of dynamically handled extensions (e.g. generating GIF files through SilverStripe controllers). See #2958 (from r97791) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112091 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- .htaccess | 2 -- install.php | 1 - rewritetest.php | 4 ---- 3 files changed, 7 deletions(-) diff --git a/.htaccess b/.htaccess index d0dfc7d..6421293 100644 --- a/.htaccess +++ b/.htaccess @@ -12,8 +12,6 @@ RewriteEngine On -RewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$) - RewriteCond %{REQUEST_URI} ^(.*)$ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L] diff --git a/install.php b/install.php index eba8996..aea36da 100644 --- a/install.php +++ b/install.php @@ -956,7 +956,6 @@ Allow from 127.0.0.1 RewriteEngine On $baseClause -RewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$) RewriteCond %{REQUEST_URI} ^(.*)$ RewriteCond %{REQUEST_FILENAME} !-f diff --git a/rewritetest.php b/rewritetest.php index 4202d9f..06f1232 100644 --- a/rewritetest.php +++ b/rewritetest.php @@ -81,8 +81,6 @@ function createHtaccess() { RewriteEngine On RewriteBase $base -RewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$) - RewriteCond %{REQUEST_URI} ^(.*)$ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L] @@ -114,8 +112,6 @@ function createHtaccessAlternative() { RewriteEngine On RewriteBase $base -RewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$) - RewriteCond %{REQUEST_URI} ^(.*)$ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .* $_SERVER[DOCUMENT_ROOT]/sapphire/main.php?url=%1&%{QUERY_STRING} [L]