lorax

msg:4457554 | 8:42 pm on May 24, 2012 (gmt 0) |
I've never heard of this issue with WordPress. Is is possible that you did something by accident? Have you made any edits to your htaccess file or added any new plugins or other adjustments to the WordPRess or Hosting setup?
|
Gemini23

msg:4457560 | 8:55 pm on May 24, 2012 (gmt 0) |
I am not aware of anything specific happening... It was around the time of a new template that my wordpress guy created but he assures me that this wouldn't have done it. It was also around the time of a 'backup' which preceded the new template. But I understand the backup just creates the backup in the 'blog' folder (and I can see the backup there). the blog itself is (and has been for a couple of years) in the format of www.example.com/blog/index.php/thursday24052012.html etc and the dozens of new 404 pages not found showing as www.example.com/blogging/index.php/thursday24052012.html and the new folder seems to have generated a sitemap or at least was shown in my Google Webmaster Tools account as being the source of the links for the 'blogging' folder!
|
g1smd

msg:4457561 | 8:58 pm on May 24, 2012 (gmt 0) |
Nothing has been "created" on your site if the URLs return 404. What has happened is that somewhere on the web there are now some links pointing to incorrect URLs. Wait for the WMT data to further update to include the backlink data. The links might be on some other site. Ah, you posted again. Looks like someone made an error then corrected it by removing the duff stuff. But unfortunately not before Google had been in there. Set up a RewriteRule to mass redirect the incorrect URLs to the matching correct URL. This redirect will appear very near the start of your htaccess file.
RewriteRule ^blogging/(.*) http://www.example.com/$1 [R=301,L]
|
|