I have a blog for http://www.digitalproductions.co.nz/digitalage/ however, when it is searched up by Google it also applies /author/admin/ at the end of the URL. All the links in the document then have "author" attached to the end, eg http://www.digitalproductions.co.nz/digitalage/author/webvideos.php, which is incorrect. Is there a way to disable the "/author/admin/" linking?
My permalink is
/%postname%/
----
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /digitalage/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /digitalage/index.php [L]
</IfModule>
When visiting the site from the blog url (minus author) it works fine.