summaryrefslogtreecommitdiff
path: root/.htaccess
blob: 3f044bb475b32a95786dc4409dc665d680a333a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Options +FollowSymlinks +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
DirectoryIndex index.shtml index.html
<Files ~ "^.*\.([Hh][Tt][Aa])">
	Order allow,deny
	Deny from all
</Files>
<Files .git>
	Order allow,deny
	Deny from all
</Files>
RedirectMatch 204 generate_204(.*)$
ErrorDocument 400 /err/400.html
ErrorDocument 403 /err/403.html
ErrorDocument 404 /err/404.html
ErrorDocument 500 /err/500.html
ErrorDocument 502 /err/502.html
ErrorDocument 503 /err/503.html
ErrorDocument 504 /err/504.html