redbloodedamericanboy
Member
Posted 4 months ago #
From my 404 Report plugin, I am receiving these emails that show my posts have a backslash at the end of the URL? Are these just badbots or something doing this?
404 Report - a file not found error was registered on your site.
404 URL: http://redbloodedamericanboy.com/2009/05/17/windows-mobile-61-a-stiff-hand-for-my-blackjack-2/%5C%5C%5C\'
Referred by:
User Agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Thanks so much for the help!
Hi,
Add this code in htaccess file and have a check:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thanks,
Shane G.