Its ok ive found what to do now. Well at least i found a few things to try, here what i found if anyone is interested.
>> Create .htaccess in that directory with one line:
>> ForceType text/plain
The RemoveHandler directive removes any handler associations for files with the given extensions. This allows .htaccess files in subdirectories to undo any associations inherited from parent directories or the server config files. An example of its use might be:
/foo/.htaccess:
AddHandler server-parsed .html
/foo/bar/.htaccess:
RemoveHandler .html
This has the effect of returning .html files in the /foo/bar directory to being treated as normal files, rather than as candidates for parsing (see the mod_include module).
The extension argument is case-insensitive, and can be specified with or without a leading dot.
The RemoveType directive removes any MIME type associations for files with the given extensions. This allows .htaccess files in subdirectories to undo any associations inherited from parent directories or the server config files. An example of its use might be:
/foo/.htaccess:
RemoveType .cgi
This will remove any special handling of .cgi files in the /foo/ directory and any beneath it, causing the files to be treated as being of the default type.
Note:RemoveType directives are processed after any AddType directives, so it is possible they may undo the effects of the latter if both occur within the same directory configuration.
The extension argument is case-insensitive, and can be specified with or without a leading dot.
Taken from:
http://httpd.apache.org/docs/mod/mod_mi ... ovehandler