• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

.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