Hi,
I have a CMS software installed on my website and in the .htaccess file, there's a line
Code:
RewriteRule ^(.*)(\.html|\.htm)$ index.php [L]
and this prevents all other .html files from showing. Anytime I try to access a .html file, I get a 404 error. If I remove the
"\.html" from the code, then the .html files show but the whole CMS application links stop working. I want to give access to just one file - javascripttest.html. Is it possible to just let that one particular file function? There is no file with the same name in any other subdirectories.
Thanks! :)