I still want people to have access to ALL the files, just not let any of the files run as scripts. Maybe have php files behave as plain text or html files.
I am trying to create a place my users can upload/download files, but I want to make sure they can't run a phpshell or other bad scripts.
php_admin_flag engine off
This creates a 500 error for all files, including html files
<Limit GET POST>
Order Allow,Deny
deny from all
</Limit>
This creates a 403 error for all files, including html files