Hello,
Sometime, my apache file handlers quit functioning correctly. I had setup the file extensions .asp, .html, and .htm to be routed as PHP files (admittedly not great practice).
From .htaccess:
AddHandler php5-script asp
AddHandler application/x-httpd-php html htm
AddType text/html php asp
I've tried several variations (read about php5-script online) to no avail. None of my previous extensions will process PHP. It all gets served up as HTML files.
Any ideas? Thank you
Jon