-1

I want to secure htdoc file so that none can access into htdocs . How is it possible?

How I rewrite it?

<Files ".ht*">
    Require all denied
</Files>
Shyful74
  • 29
  • 7

1 Answers1

0

Put this into a .htaccess file placed directly into the htdocs folder:

Order allow, deny
Deny from all
04FS
  • 5,660
  • 2
  • 10
  • 21