I'm trying to block this link
http://192.168.1.123/index.php?page=php://filter/convert.base64-encode/resource=setupreset from my application using .htaccess file but I'm getting an internal server error.
This is how I'm doing it
RewriteEngine On RewriteRule http://192.168.1.123/index.php?page=php://filter/convert.base64-encode/resource=setupreset$ - [F] <Files "setupreset.php"> Deny from all </Files> <Files "\.inc$"> Deny from all </Files What am I doing wrong?
<Files>blocks are existing directives and were "working" before adding the preceding rule?)