• 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 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