sources:
http://httpd.apache.org/docs/1.3/content-negotiation.html
http://x10hosting.com/forums/programming-help/97200-extentionless-urls.html
http://www.garnetchaney.com/htaccess_tips_and_tricks.shtml
http://www.bluehostforum.com/showthread.php?11888-Problem-with-mod_rewrite.c
AllowOverride moet enabled zijn. (ALL)
* Server wide / virtual hosts. /etc/httpd/conf/http.conf
<Directory “/var/www/html”>
….knip….
Options Indexes FollowSymLinks [b]MultiViews[/b]
….knip….
</Directory>
* via .htaccess
<IfModule mod_rewrite.c>
Options +MultiViews
</IfModule>