简体   繁体   中英

Restrict WHM/cPanel Access to user folder ~

I want to restrict access to direct folder in WHM, for example I have my website: samplesite.com

But at the same time if I open server-whm.com/~samplesite , I can see the content of my website.

I need to restrict this access to open my website only from the domain.

You can place this rule as first rule in samplesite/.htaccess :

RewriteEngine On

RewriteCond %{HTTP_HOST} !^(www\.)?samplesite\.com$ [NC]
RewriteRule ^ - [F]

This will allow /samplesite/ to be accessed only from samplesite.com

You can disable this functionality from WHM:

  1. login as root
  2. go to security center > Apache mod-userdir tweak
  3. tick the enable mod_userdir protection box

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM