How do i stop ppl from being able to access other files in the web root dir...? is it a script that i have to find or just some code that needs to be added...?
There are normally the two commands chown and chmod to set the owner of a file and then set the permissions on it.
Not sure if the others answered your question or if you were looking for more of an apache answer. If you are trying to stop people from viewing your images or css or any directory, then use this bit: Code: <Directory /www/images> Order deny,allow Deny from all Allow from env=linked_from_here </Directory> More info can be found here http://httpd.apache.org/docs/1.3/misc/FAQ.html#image-theft Hopefully that helps.
hey its not theft that im worried about . its controlling the path of which they enter they site. i think i have it figured out..but thanks for the reply