aboutsummaryrefslogtreecommitdiffstats
path: root/railties/configs/apache.conf
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-08 23:46:29 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-08 23:46:29 +0000
commit7145046493f122f26717149dcb03b8a1689b5c76 (patch)
treee13cff92ddf616d03db3ccce3ee818ff7174ef9f /railties/configs/apache.conf
parent0b6fe2244e2b5b13fa7bc9e0dc773c425d19fd59 (diff)
downloadrails-7145046493f122f26717149dcb03b8a1689b5c76.tar.gz
rails-7145046493f122f26717149dcb03b8a1689b5c76.tar.bz2
rails-7145046493f122f26717149dcb03b8a1689b5c76.zip
Added rewrite conditions needed for page caching to work
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@348 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/configs/apache.conf')
-rwxr-xr-xrailties/configs/apache.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/configs/apache.conf b/railties/configs/apache.conf
index 3da2844d66..592c7ef155 100755
--- a/railties/configs/apache.conf
+++ b/railties/configs/apache.conf
@@ -16,12 +16,18 @@ RewriteBase /dispatch.cgi
RewriteRule ^([-_a-zA-Z0-9]+)$ /$1/ [R]
# Default rewriting rules.
+RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/([0-9]+)$ ?controller=$1&action=$2&id=$3 [QSA,L]
+RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)$ ?controller=$1&action=$2 [QSA,L]
+RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([-_a-zA-Z0-9]+)/$ ?controller=$1&action=index [QSA,L]
+RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/([0-9]+)$ ?module=$1&controller=$2&action=$3&id=$4 [QSA,L]
+RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)$ ?module=$1&controller=$2&action=$3 [QSA,L]
+RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/$ ?module=$1&controller=$2&action=index [QSA,L]
# You can also point these error messages to a controller/action