• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

.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