I have a really strange behavior while using Mason,
For example:
I have an index.html file ( that contains mason tags like <% $var %> hello ).
When I'm browsing to "http://bla.com/index.html" - the variable is translated during compilation.
But there's a strange behavior when I'm browsing to "http://bla.com/index" Though there's no file called "index" ( only index.html ) it still loads "index.html" and the entire code is shown as plain/text including the "<% ... %>" !!!
What have I configured wrong ?
this is my Apache configuration:
<VirtualHost *:80>
ServerAdmin webmaster@abc.com
ServerAlias abc.com www.abc.com
ServerName abc.com
DocumentRoot /var/www/abc.com
DirectoryIndex index.html
<Directory "/var/www/abc.com/">
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
SetHandler perl-script
PerlModule HTML::Mason::ApacheHandler
PerlSetVar MasonUseObjectFiles 1
<LocationMatch "(\.html|\.txt|\.pl|\.js)$">
SetHandler perl-script
PerlHandler HTML::Mason::ApacheHandler
</LocationMatch>
<LocationMatch "(\.m(html|txt|pl)|dhandler|autohandler)$">
SetHandler perl-script
PerlHandler Apache::Constants::NOT_FOUND
</LocationMatch>