wordpressの管理画面にベーシック認証を付ける htaccess

<Files wp-login.php>
AuthType Basic AuthUserFile ※ここに.htpasswdへのフルパスを記入 例) /home/www/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter your ID and password"
require valid-user
</Files>
<Files wp-login.php>
AuthType Basic
AuthUserFile ※ここに.htpasswdへのフルパスを記入 例) /home/www/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter your ID and password"
require valid-user
</Files>
<Files wp-login.php>
AuthType Basic
AuthUserFile ※ここに.htpasswdへのフルパスを記入 例) /home/www/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter your ID and password"
require valid-user
</Files>