• Resolved klewis

    (@blackawxs)


    I currently run my WordPress site on an nginx server that does not provide .htaccess support, or me customizing the nginx config file. Will this plugin still work knowing that limitation?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Shafaet Alam

    (@shafayat-alam)

    .htaccess rules in apache just too add file access privacy, that will to affect plugin functionality. In nginx if you can apply simlar rule using configuration like this:

    location ~ /(no_access_folder)
    {
         deny all;
         return 403;
    }
    
    Thread Starter klewis

    (@blackawxs)

    As I mentioned prior, I don’t have the ability to modify the configuration file for nginx. I need a wp solution.

    Plugin Contributor Shafaet Alam

    (@shafayat-alam)

    There is no wp solution, Also, the configuration is not mandatory. WPDM functionality will not be affected by it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘htaccess involvement’ is closed to new replies.