I am ftping a .html file to a subdirectory under my domain on a remote server. There is no .htacess file in this subdirectory.
If I address the file so: "http://<domain_name>/<subdirectory_name>/<file_name>.html ", my page is not rendered, some unknown .php file is rendered instead.
If I change the extension of the file on the server from ".html" to ".php" and address the file so: "http://<domain_name>/<subdirectory_name>/<file_name>.php ", my file is correctly rendered. No surprise there. Now, this is not a bad thing as my file is being rendered, but, for several reasons, I do not want my file to be processed by the php processor.
I have looked at the code in the .htaccess file located in the directory immediately above my subdirectory. It appears to favor .php files. However, I am not an htaccess expert so I am not sure that I correctly understand the code I see.
I am hoping that there is code that i can put in a htaccess file in my directory that will say to the Apache server "html files are OK too" and will render my html without complaint.