up vote 1 down vote favorite
share [g+] share [fb]

How do you write rules to redirect all requests to *.php and *.html files in upload/ folder to a text file name forbidden.txt in root www folder. What I'm trying to do exactly is preventing script execution in this dir by redirecting those requests to the text file

Note: The upload/ folder is accessibly by ftp used by a group of people to upload files so I cannot place htaccess inside this folder.

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

Create an .htaccess file at the root level of your site containing

RedirectMatch ^/upload/.+(html|php)$ http://www.yoursite.com/forbidden.txt

You could also try switching off the PHP engine in that directory by creating an .htaccess file in /upload/ containing:

php_value engine off

although you would need to ensure that people cannot upload files with the name .htaccess

link|improve this answer
Thanks! This is what I'm looking for. It works :) – Flint Sep 29 '09 at 6:02
feedback

Put your htaccess rules in httpd.conf instead.

link|improve this answer
I don't have access to the apache config. It's shared webhosting – Flint Sep 28 '09 at 15:34
feedback

If you can't edit httpd.conf, then your best bet is to not allow web access to that directory at all. Let FTP users access a folder outside of your web directory and then provide a mechanism for retrieving the file contents.

You could name that directory "upload". Then you could have your .htaccess file make requests to /upload/myfile execute upload.php, which finds ../upload/myfile and spits backs its contents. This way it would appear to users that they are accessing the "upload" folder directly, but you would the level of control you want through the PHP script.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.