There is a file in the root of the site (let's call file.php)
It is necessary through htaccess to chop off access to it, if the address (link) is missing a certain GET parameter.
For example:
- domen / file.php - no access
- domen / file.php? test = 1 - no access
- domen / file.php? trueparam = abc & secondparam = 123 - there is access (here you need the right option)
Is it possible to do it somehow via exceptlimit or redirect rules with the F flag (or another)?
RewriteCondvalue of%{QUERY_STRING}on\bparam=- teran