-1
need to block access to a Page (URL) with htaccess, for example:
http://site_exemplo.com.br/noticias/como-bloquear-acesso-a-pagina
I want to block via htaccess
-1
need to block access to a Page (URL) with htaccess, for example:
http://site_exemplo.com.br/noticias/como-bloquear-acesso-a-pagina
I want to block via htaccess
1
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?site_exemplo.com.br$ [NC]
RewriteRule ^(noticias/como-bloquear-acesso-a-pagina) - [L,F]
Browser other questions tagged php htaccess
You are not signed in. Login or sign up in order to post.