Hi, I have hundreds of crawling errors in webmaster tools, they are like that for example:
http://www.acadclass.com/entities, where "entities" is a tag word.
But normaly when looking for a tag I should have this URL:
http://www.acadclass.com/tag/entities
May it be a htaccess missconfiguration?
This is my htaccess:
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
</IfModule>