1

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?

Alexis Dufrenoy
  • 235
  • 1
  • 3
  • 11
  • If you haven't specified a handler or content type for .asp files, Apache should just send them as-is by default, so they should work fine as HTML files. What happens when you try? – Andrew Schulman Mar 18 '21 at 19:09

1 Answers1

2

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

bitcollision
  • 131
  • 7