Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm on a 15-day trial of my (already paid) webhosting and they seem very good, at least they did until I got my FTP.

I have a php script that needs a folder outside of the root directory


Example:

website root:

/users/websites/public_html/ <- folder which users / browsers have access to

The script needs a folder here:

/users/websites/ <- above the root

for example /users/websites/sensetive_data/ <- browsers cannot acces this


but that's impossible on my web-host "because it's a shared hosting" <- their answer. And they can't change the root path.

So I cannot create any directories or files above /users/websites/public_html/

So, well, to no cancel my trial immediately, maybe I will try to do it in another way, I want to use htacces to restrict acces to a directory, and all the files in it and it's subdirectories,

So I can move the 'sensetive_data' folder to /users/websites/public_html/sensetive_data

I want it to redirect to the main page (so when accessing /users/websites/public_html/sensetive_data/* [http://example.com/sensetive_data/*] it will go to /users/websites/public_html/ [http://example.com/],

so even if the user knows the exact url, he/she will be redirected. How can I accomplish that?

share|improve this question
make it clearer – Alvin Wong Jul 27 '12 at 4:10
ok made it clearer – The Pet Jul 27 '12 at 4:17

2 Answers

up vote 1 down vote accepted

If you want to do a redirect for a folder, say /users/websites/sensitive_data/

create a file in that folder called .htaccess and add the following (and specify the url to redirect to)

Options -Indexes
ErrorDocument 403 http://mysite.net/
share|improve this answer
works nice, thanks. – The Pet Jul 27 '12 at 5:15

In /users/websites/sensetive_data/.htaccess write:

Deny From All

For your whatever PHP script you need to change it yourself.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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