Hi @volkerharz,
A rewrite rule consists of the following structure:
RewriteRule Pattern Substitution [Flags]
RewriteRule: specifies the RewriteRule directive
Pattern: a PCRE (Perl Compatible Regular Expression) that matches the desired string. You can learn more about regular expressions here.
^ -> Called an anchor, matches the beginning of the string
. -> Matches any single character
* -> Repeats the previous match zero or more times
Substitution: where should the matching requests be sent
A dash (-) means do nothing.
[Flags]: optional parameters to modify the rule. For more information on the available flags and their meanings, see Apache’s documentation on Rewrite Flags.
[F]
Forbidden: instructs the server to return a 403 “Forbidden” response to the client.
[L]
Last rule: instructs the server to stop rewriting after the preceding directive is processed.
Most likely the API Calls HTTP_USER_AGENT is empty which triggers the RewriteRule.(RewriteCond %{HTTP_USER_AGENT} “^$” [NC,OR]).
+++++ To prevent any confusion, I’m not iThemes +++++
-
This reply was modified 2 years, 3 months ago by
nlpro.
-
This reply was modified 2 years, 3 months ago by
nlpro.
-
This reply was modified 2 years, 3 months ago by
nlpro.
-
This reply was modified 2 years, 3 months ago by
nlpro.
-
This reply was modified 2 years, 3 months ago by
nlpro.