Avoid 404 errors in the logs for "favicon.ico" all the time.
[www.jankratochvil.net.git] / .htaccess
1 <IfModule mod_dir.c>
2         DirectoryIndex _NOTEXISTS
3         IndexOptions NameWidth=*
4 </IfModule>
5
6 Options None
7 <IfModule !mod_perl.c>
8         Options +Indexes
9         # For "*.shtml" as "./project/Islet/Islet/Islet.shtml" etc.
10         Options +Includes
11         # Prevent: Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden
12         Options +SymLinksIfOwnerMatch
13 </IfModule>
14
15 AddHandler server-parsed .shtml
16 AddHandler cgi-script .cgi
17
18 AddType "text/html; charset=us-ascii" .html
19 AddType "text/html; charset=us-ascii" .shtml
20 AddType "text/plain; charset=us-ascii" .txt
21 AddType "text/plain; charset=us-ascii" .asc
22 AddType application/x-rpm .rpm
23 AddType application/x-nokia-9000-communicator-add-on-software .aos
24 AddType application/vnd.symbian.install .sis
25
26 RemoveEncoding .gz .Z .bz .bz2 .zip
27 AddType application/x-gzip .gz
28 AddType application/x-compress .Z
29 AddType application/x-bzip .bz
30 AddType application/x-bzip2 .bz2
31 AddType application/zip .zip
32
33 <IfModule mod_php.c>
34         php_flag short_open_tag off
35         php_flag magic_quotes_gpc off
36         php_flag magic_quotes_runtime off
37 </IfModule>
38
39 <IfModule mod_rewrite.c>
40         # Do not: [R=301] [L]
41         # as any non-1st brackets' contents would get ignored!
42         RewriteEngine on
43         RewriteRule ^kocky(|/.*)$ http://kocky.vellum.cz/$1 [R=301,L]
44         RewriteRule ^(4cinfo|4c)(|/.*)$ http://4c.jankratochvil.net/$2 [R=301,L]
45         RewriteRule ^sw(|/.*)$ http://%{SERVER_NAME}/project$1 [R=301,L]
46         RewriteRule ^projects(|/.*)$ http://%{SERVER_NAME}/project$1 [R=301,L]
47         <IfModule !mod_perl.c>
48                 RewriteRule ^favicon[.]ico$ /My/Status.pm?code=404 [P,L]
49                 RewriteRule ^(.*)[.]html[.]pl(|/.*)$ http://%{SERVER_NAME}/$1.pm$2 [R=301,L]
50                 RewriteRule ^(.*?)/+Index[.]pm$ http://%{SERVER_NAME}/$1/ [R=301,L]
51                 RewriteCond %{REQUEST_FILENAME}/Index.pm -f
52                 # It may be "" for the root directory:
53                 RewriteRule ^(|(.*?/)/*)$ http://localhost:7680/$2Index.pm [P,L]
54                 RewriteRule ^(.*[.]pm(|/.*))$ http://localhost:7680/$1 [P,L]
55         </IfModule>
56 </IfModule>