Opción para bloquear la enumeración de usuarios desde el archivo .htaccess de nuestra web
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bloquear la enumeración de usuarios (username) | |
RewriteCond %{REQUEST_URI} ^/$ | |
RewriteCond %{QUERY_STRING} ^/?author=([0-9]*) | |
RewriteRule ^(.*)$ https://dominio.com/? [L,R=301] | |
# Fin de Bloquear la enumeración de usuarios |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment