Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor mbrsolution

    (@mbrsolution)

    Hi, can you elaborate a bit more with your question.

    Thank you

    Thread Starter FreeOwl

    (@freeowl)

    === A total ban access ===
    – Apache 2.2
    Order deny, allow
    Deny from all

    – Apache 2.4
    Require all denied

    === Allow access to all ===
    – Apache 2.2
    Order allow, deny
    Allow from all

    – Apache 2.4
    Require all granted

    === Allow access for all but certain IP ===
    – Apache 2.2
    Order Allow, Deny
    Allow from All
    Deny from 172.16.16.16

    – Apache 2.4
    Require all granted
    Require not ip 172.16.16.16

    === Deny access for all but certain IP ===
    – Apache 2.2
    Order Allow, Deny
    Allow from 172.16.16.16

    – Apache 2.4
    Require ip 172.16.16.16

    === Complete ban on access to the file ===
    – Apache 2.4
    <Files license.txt>
    <RequireAll>
    Require all denied
    </RequireAll>
    </Files>

    the plugin uses the standard Apache 2.2

    Plugin Contributor wpsolutions

    (@wpsolutions)

    FreeOwl,
    As a workaround you can do the following:
    Copy the rules which have the issue you are referring to and translate them manually.
    Then disable the firewall features for those rules and paste your new code outside of the tags:
    # BEGIN All In One WP Security
    # END All In One WP Security

    In the meantime we will add a TODO item on our list to check for apache version and output correct rules.

    Plugin Contributor mbrsolution

    (@mbrsolution)

    @freeowl, does the latest version fixes your issue?

    Plugin Contributor mbrsolution

    (@mbrsolution)

    I am marking this thread as resolved. No replies in 8 months.

    Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘apache 2.4’ is closed to new replies.