.htaccess deny from all

FlyingCat picture FlyingCat · Feb 29, 2012 · Viewed 337.7k times · Source

I have copied one of my old applications and renamed it to New_application. I want to access .htaccess file that is inside the New_application folder. When I opened it with my text editor, it just showed "Deny from all". I tried to open .htaccess in my old application, it showed 'Deny from all' too. I remember I was able to edit it before but not sure what I can't now. Any thoughts? Thanks a lot.

Answer

chris picture chris · Feb 29, 2012
Deny from all 

is an .htaccess command(the actual content of that file you are trying to view). Not a denial of being able to edit the file. Just reopen the .htaccess file in the text viewer of choice and make the alterations as you so desire, save it, then reupload it to your folder of choice.

Though I think inadvertently you are blocking even yourself from viewing said application once uploaded.

I would do something like:

order deny,allow
deny from all
allow from 127.0.0.1

which will deny everyone but the IP in the allow from line, which you would change the IP to match your IP which you can obtain from http://www.whatismyip.com/ or similar site.