Hi,
I have found this RewriteCond on some blog that is supposed to help me block bad bots or agents, and would like some help understanding it:
=======================
RewriteCond %{HTTP_REFERER} ^$ [NC]
RewriteCond %{HTTP_USER_AGENT} ^$ [NC]
RewriteRule .* - [F]
=======================
What does the % sign do in RewriteCond
And how about the dash (-) for the RewriteRule after .*
Thanks!