0
Friends, I am trying to block via htaccess when someone tries to access the wordpress 'author' page ( http://meusite.com.br/? Author=1 )... I thought this solution presented here at the forum would work, but it didn’t... does anyone have any solution via htaccess for this? obgdo
The solution I found here on the forum was:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?site_exemplo.com.br$ [NC]
RewriteRule ^(noticias/como-bloquear-acesso-a-pagina) - [L,F]
Hello, one solution would be to redirect to another page, or to the home page.
– Gustavo André Richter
that’s exactly what my htacces does, send it to the main page when it encounters error type 404, so I want the author page to give error 404
– Olijma Verze
it would not be simpler to hide the Author page if you do not want it to be displayed?
– Gustavo André Richter
actually do not know how to hide (if you can indicate any link about it here from the forum), but I believe that if you had some way via htaccess, could be used for other similar cases, that perhaps can not be 'hidden'...
– Olijma Verze
gives a mess in this (material)[https://br.support.wordpress.com/paginas/visibilidade-da-pagina/] I think it can help you, have plugins that do this
– Gustavo André Richter
ah yes... that I already know, but for this page of 'Author' there is no way to use this function...
– Olijma Verze
I tried to use this but it gives syntax error, can anyone try to see if it works? https://wordpress.2bearstudio...Able-wordpress-Author-pages/
– Olijma Verze
i tried this on htaccess Rewritecond %{QUERY_STRING} (Author= d+) [NC] Rewriterule . * - [F] , but fell on the apache test page... '
– Olijma Verze
I got it! The solution I used was the one I pointed out at the beginning... Rewriteengine On Rewritecond %{HTTP_HOST} (www.)? site_example.com.br$ [NC] Rewriterule (news/how-block-access-to-page) - [L,F] only needed to adjust the final path... ps.: I don’t know how to close a topic, but this can already be closed
– Olijma Verze
was just as I expected http://ineclub.com.br/? Author=1
– Olijma Verze