Project

General

Profile

Defect #155 » htaccess_if_module.patch

Stephan Dale, 2009-02-22 00:01

View differences:

.htaccess (working copy)
35 35

  
36 36
RewriteRule ^$ index.html [QSA]
37 37
RewriteRule ^([^.]+)$ $1.html [QSA]
38
RewriteCond %{REQUEST_FILENAME} !-f
39 38
<IfModule mod_fastcgi.c>
39
	RewriteCond %{REQUEST_FILENAME} !-f
40 40
	RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
41 41
</IfModule>
42 42
<IfModule mod_fcgid.c>
43
	RewriteCond %{REQUEST_FILENAME} !-f
43 44
	RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
44 45
</IfModule>
45 46
<IfModule mod_cgi.c>
47
	RewriteCond %{REQUEST_FILENAME} !-f
46 48
	RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
47 49
</IfModule>
48 50

  
(2-2/2)