Disabling comments/trackbacks?
Posted: Sun Feb 25, 2007 12:26 am
Is there a way to disable comments and/or trackbacks on my serendipity blog?
Thanks
Thanks
User and developer community
https://board.s9y.org/
Code: Select all
You can turn off to receive trackbacks/comments in the configuration of your spamblock plugin. To totally ban trackbacks from your site, you can edit the serendipity file *comment.php* After the first <?php add this:
if ($_REQUEST['type'] == 'trackback') die('Disabled');
The other way you have is to edit your .htaccess file and add a mod_rewrite (if your server supports that, of course) rule to block calls to your comment.php:
RewriteCond %{QUERY_STRING} ^.*type=trackback.*$ [NC]
RewriteRule ^.*comment.php.*$ - [F]