• hi,

    I’ve been setting up my first wordpress site, I’ve used Bunny’s Technorati Tags to do Technorati Tags. (duh).

    But I’ve been trying to implement David Gagne’s Hack (http://www.davidgagne.net/?p=6179) to make the tags link to my own site search rather than to technorati.

    However, my url’s 404.

    The difference between my site and Dave’s (where it works) is he has urls like ?p=blah whereas I’ve used rewriting to have /category/title urls for posts.

    I’ve put the suggested rewrite rule into my .htaccess, but it still 404’s and I’ve not managed to figure out a solution


    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^tags/([^/]+)$ /index.php?s=$1 [R]
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    Suggestions?

  • The topic ‘bunny tags – linking to own site’ is closed to new replies.