Trackbacks are great, but sometimes the spam load exceeds the value. However, google and other search engines like seeing links on your site from one entry to another, so allowing local trackbacks while denying external trackbacks could be ideal for some sites, or at least, the concept sounds good to me and I would like opinions on this:
Code: Select all
<FilesMatch "comment\.php">
# need to replace ip address below with local IP
SetEnvIf Remote_Addr "^123\.456\.789\." TB_OK=1
Order deny,allow
Deny from all
Allow from env=TB_OK
</FilesMatch>