• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

.htaccess problems

philliph22

New Pleskian
Hello

I'm having some problems with my Plesk install, I wonder if someone could point me in the right direction. I've searched quite a bit and tried various suggestions but nothing has worked thus far.

I'm trying to restrict a directory by IP with an .htaccess file:

Order Deny,Allow
Deny from all
Allow from < IP >


Nomatter what IP you put in there is always a 403:

Forbidden
You do not have permission to access this document.


It does look the .htaccess file is being read, as if I put rubbish in there I get a 500 Internal Server Error.

It's as though the .htaccess file doesnt have deny permissions.

The error log blames server configuration.

thanks

Phil
 
Hi philliph22,

Try to turn OFF nginx reverse proxy in server settings. While Nginx is on, it acts as a web client for Apache. So all requests come to Apache from same ip - the server's localhost.
 
Better way is to do this in your .conf file:
<Directory /hidedirectory>
options -Indexes
Order Deny,Allow
Deny from all
Allow from XX.XXX.XX.XXX
</Directory>
 
Back
Top