| 1 | ErrorDocument 404 /~bandali/404.html |
| 2 | |
| 3 | AddCharset utf-8 .bib .org |
| 4 | AddType text/plain .bib .org |
| 5 | |
| 6 | AddType application/atom+xml .atom |
| 7 | AddType application/rss+xml .rss |
| 8 | |
| 9 | <IfModule mod_rewrite.c> |
| 10 | # since we set Options -MultiViews in ../.htaccess, we now have to |
| 11 | # explicitly tell apache that files with no extension are actually |
| 12 | # .html files |
| 13 | RewriteCond %{REQUEST_FILENAME}.html -f |
| 14 | RewriteRule !.*\.html$ %{REQUEST_FILENAME}.html [L] |
| 15 | |
| 16 | RewriteRule ^fsf-internship/intro$ /~bandali/fsf-internship-intro.html [R] |
| 17 | </IfModule> |