http: //83.133.124.xx/?xurl=http: //83.133.124.xx/dKF0hECx8vc7cf603d0c543052a48f3acafa625g&xref=http://example.com
Is this the actual (modified for this forum) raw log refer?
OR
is this the requested page?
If the aforementioned?
Please keep in mind that denials via referral are less than ideal, although useful.
Also keep in mind that denying access will NOT prevent the request from appearing in your raw logs.
One method
#keep_out or what ever name you use. Requires use of env=.
#Any of these will work
SetEnvIfNoCase Referer example keep_out
SetEnvIfNoCase Referer xurl keep_out
SetEnvIfNoCase Referer 83 keep_out
SetEnvIfNoCase Referer 133 keep_out
another method in mod_rewrite
RewriteEngine on (note; if not already on)
#contains any of these, than deny access
#note the missing [OR] on last RewriteCond line is REQUIRED
RewriteCond %{HTTP_REFERER} example [OR]
RewriteCond %{HTTP_REFERER} xurl [OR]
RewriteCond %{HTTP_REFERER} 83 [OR]
RewriteCond %{HTTP_REFERER} 133
RewriteRule .* - [F]