• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

.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