.htaccess deny from all

后端 未结 3 518
孤街浪徒
孤街浪徒 2020-12-05 05:59

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

相关标签:
3条回答
  • 2020-12-05 06:32
    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.

    0 讨论(0)
  • 2020-12-05 06:34

    This syntax has changed with the newer Apache HTTPd server, please see upgrade to apache 2.4 doc for full details.

    2.2 configuration syntax was

    Order deny,allow
    Deny from all
    

    2.4 configuration now is

    Require all denied
    

    Thus, this 2.2 syntax

    order deny,allow
    deny from all
    allow from 127.0.0.1
    

    Would ne now written

    Require local
    
    0 讨论(0)
  • 2020-12-05 06:49

    You can edit it. The content of the file is literally "Deny from all" which is an Apache directive: http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#deny

    0 讨论(0)
提交回复
热议问题