I'm trying to put a .sqlite database file on my server so users can download it (ultimately it is going to be a replacement/update for a database that ships with an iOS app - see this question for more background). On our server, we have a "download" folder that is currently being used to allow users to successfully download .mde database files. I tried putting my .sqlite file in that same download folder (and just changing it so I'm pointing to the .sqlite database instead of the .mde database), but that doesn't work - I get a http status code 404.
For example, if I just open a new Internet Explorer or Firefox window and type the location of the .mde in the address bar, I get a prompt asking if I want to save the file or choose to open it with an application from a list. If I type the location to the .sqlite file, I don't get any download prompt, I just get redirected to an error screen showing the 404 code (and I've verified that I typed the filename and directory for the .sqlite file correctly about 100 times).
Is there anything more I need to do to allow my .sqlite file to be downloaded (like "register" that particular file or extension somehow)?
I'm really unfamiliar with all this server side stuff, so if something is unclear I apologize, and I'll try to provide any other information that may be helpful if I can.