Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: .htaccess deny from all #10797
    blankgasp
    Participant

    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
    
Viewing 1 post (of 1 total)