• Resolved Rpmas

    (@rpmas)


    Consider this a wish if there isn’t. I would pay for the + for this option.

    I have a hidden private writer forum that is a subfolder of my WordPress site. It’s totally different software. It’s forum software not based on wordpress. So far, it works but I would like a way to exclude it if it doesn’t so I can leave Ninja on the WordPress but ignore the sub folder.

    For example the address is mysite.com/myhiddenforum I would like Ninja to ignore it because it is flooding my log files with the forum and I can’t see the real problems.

    I haven’t found a way to do this in my searches but maybe I’m just overlooking it.

    https://wordpress.org/plugins/ninjafirewall/

Viewing 1 replies (of 1 total)
  • Plugin Author nintechnet

    (@nintechnet)

    Hi,

    You can use the .htninja file for that purpose:

    <?php
    /*
     +=============================================================+
     | NinjaFirewall optional configuration file                   |
     |                                                             |
     | See: http://nintechnet.com/nfwp/1.1.3/                      |
     +=============================================================+
    */
    
    if (strpos($_SERVER['SCRIPT_NAME'], '/myhiddenforum') !== FALSE) {
       return 'ALLOW';
    }

    The firewall will ignore any HTTP request sent to a PHP script located inside a “/myhiddenforum” folder.

Viewing 1 replies (of 1 total)
  • The topic ‘Is there a way to exclude a folder?’ is closed to new replies.