How can I set Apache to serve files as text?

You want ALL files to go over as plain text?? Or do you have a subset of filetypes you want to send as plain text? Not sure if there's a way to set everything to go over as plain text.

For certain file types you would just add directives to your Mime.types file or local .htaccess file

AddType text/plain .c
AddType text/plain .h

etc.


You can use this to force the data type of all files, e.g. for a specific location:

<Location "/programfiles">
    ForceType text/plain
</Location>

So, no matter what's in there, even .php files, they're treated as plain text and shown to the browser instead of being download or even executed on the server side.

For more info see the mod_mime reference page for ForceType.


Create .htaccess in target directory (applies to it's subfolders too):

<Files "\.(html|c|php)$">
    ForceType text/plain
</Files>

To apply to all extensions, use asterisk *:

<Files "*">
...

Tags:

Apache 1.3