• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

.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