• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

.htaccess doesn't work on subdomains

M

MikePaul99

Guest
Just as the title says, I cannot get .htaccess to work with any of my subdomains.

All I'm trying to do is make use of mod_rewrite. Funny thing is it used to work with 7.5.3.

Any ideas?
 
Seems to be working for me. I have a subdomain 'plesksub' on my test server, and I put a simple .htaccess file in:

/home/httpd/vhosts/testdomain.com/subdomains/plesksub/httpdocs

containing:
Code:
# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
</Limit>      
<Limit PUT DELETE>
order deny,allow  
deny from all   
</Limit>
Then RESTART APACHE, and it denies me access to the site, when I remove it, I can then bring up the index.html file.
 
Back
Top