I'm moving a static archived website to Apache from IIS/Windows, want to keep the old URLs that end with .aspx
How do I allow aspx/ashx as static content on Linux?
I don't plan to execute these files in Mono or anything, just to serve them as static (with all the code removed obviously, keeping only html)
I assume I should be doing something like this to my .htaccess:
AddType text/html .aspx
Am I right?