source: ruby/trunk/rails/cancerehr/public/.htaccess@ 12

Last change on this file since 12 was 12, checked in by KOBAYASHI, Shinji, 16 years ago

prepare cancerehr

File size: 1.2 KB
Line 
1# General Apache options
2AddHandler fastcgi-script .fcgi
3AddHandler cgi-script .cgi
4Options +FollowSymLinks +ExecCGI
5
6# If you don't want Rails to look in certain directories,
7# use the following rewrite rules so that Apache won't rewrite certain requests
8#
9# Example:
10# RewriteCond %{REQUEST_URI} ^/notrails.*
11# RewriteRule .* - [L]
12
13# Redirect all requests not available on the filesystem to Rails
14# By default the cgi dispatcher is used which is very slow
15#
16# For better performance replace the dispatcher with the fastcgi one
17#
18# Example:
19# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
20RewriteEngine On
21
22# If your Rails application is accessed via an Alias directive,
23# then you MUST also set the RewriteBase in this htaccess file.
24#
25# Example:
26# Alias /myrailsapp /path/to/myrailsapp/public
27# RewriteBase /myrailsapp
28
29RewriteRule ^$ index.html [QSA]
30RewriteRule ^([^.]+)$ $1.html [QSA]
31RewriteCond %{REQUEST_FILENAME} !-f
32RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
33
34# In case Rails experiences terminal errors
35# Instead of displaying this message you can supply a file here which will be rendered instead
36#
37# Example:
38# ErrorDocument 500 /500.html
39
40ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
Note: See TracBrowser for help on using the repository browser.