By 7 Ottobre 2016 0 Comments

Bloccare un singolo file con .htaccess

Per bloccare un singolo file con .HtAccess è sufficiente questa istruzione:

<Files “****.php”>
Order Allow,Deny
Deny from all
</Files>

Nel caso specifico, per proteggere wp-cron.php e xmlrpc.php sarà sufficiente duplicare l’istruzione.

<Files “wp-cron.php”>
Order Allow,Deny
Deny from all
</Files>

<Files “xmlrpc.php”>
Order Allow,Deny
Deny from all
</Files>

Bloccare un singolo file con .htaccess, htaccess block single file, bloccare file htaccess, htaccess block file, block single php con htaccess, htaccess block wp-cron.php, htaccess block xmlrpc.php

Posted in: Apache, Linux, Web Server

About the Author:

shared on wplocker.com