Display html files with another file extension on Apache server

One of our systems generates files with an .asp extension that actually only html. I need to display those files on an Apache httpd server, which doesn't like asp files. Is there a way to indicate to the server to display those files as HTML files?


Solution 1:

Add this to your httpd.conf or .htaccess file.

AddType text/html .asp .aspx

sudo a2enmod mime
Reference: https://httpd.apache.org/docs/2.4/mod/mod_mime.html#addtype


To list apache loaded modules use:

apachectl -M