aboutsummaryrefslogtreecommitdiffstats
path: root/railties/configs
diff options
context:
space:
mode:
Diffstat (limited to 'railties/configs')
-rwxr-xr-xrailties/configs/apache.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/configs/apache.conf b/railties/configs/apache.conf
index f24e1753fc..bf24511506 100755
--- a/railties/configs/apache.conf
+++ b/railties/configs/apache.conf
@@ -9,12 +9,12 @@ Options +FollowSymLinks +ExecCGI
# For better performance replace the dispatcher with the fastcgi one
#
# Example:
-# RewriteRule ^(.*)$ dispatch.fcgi?$1 [QSA,L]
+# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
RewriteEngine On
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
-RewriteRule ^(.*)$ dispatch.cgi?$1 [QSA,L]
+RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
# In case Rails experiences terminal errors
# Instead of displaying this message you can supply a file here which will be rendered instead