Htaccess: Difference between revisions

From Server STB
Jump to navigation Jump to search
No edit summary
No edit summary
Tag: Reverted
Line 3: Line 3:
* Contoh 1
* Contoh 1


Buat file .htaccess
Buat file .htaccess,


<Directory "/var/www/html/wp-content/uploads/">
<Directory "/var/www/html/wp-content/uploads/">
Line 11: Line 11:
* Contoh 2
* Contoh 2


Buat file .htaccess
Buat file .htaccess,


<FilesMatch "\.(php)$">
<FilesMatch "\.(php)$">

Revision as of 03:46, 20 September 2023

Htaccess sebagai bantuan keamanan

  • Contoh 1

Buat file .htaccess,

<Directory "/var/www/html/wp-content/uploads/"> php_admin_value engine Off </Directory>

  • Contoh 2

Buat file .htaccess,

<FilesMatch "\.(php)$"> Order Deny,Allow Deny from all </FilesMatch>

  • Contoh 3

Ini di letakan di 000-default.conf

<Directory "/var/www/html/info/">

   <FilesMatch "\.(php)$">
       Order Deny,Allow
       Deny from all
   </FilesMatch>

</Directory>