The problem is not a persistent one; it happens sometimes and I am unable to recreate it (even using the same urls).
[Tue Dec 20 09:07:12 2011] [error] [client 66.249.66.169] (20025)The given path contained wildcard characters: access to /?p=2463 failed
[Tue Dec 20 10:10:30 2011] [error] [client 110.0.107.198] (20025)The given path contained wildcard characters: access to /proxyimages.php?url=http%3A%2F%2Fi.imgur.com%2F2DKZ0.jpg&mimeType=image%2Fjpeg failed
I am using a Wordpress blog with some modifications, and since a while a go i have been getting a lot of those errors from apache, and google results for this problem aren't helpful...
Any ideas?
EDIT:
Some virtual hosts are only thing different from the clean httpd.conf
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs/
ServerName 94.102.49.102
</VirtualHost>
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs/site1
ServerName www.site1.com
ServerAlias site1.com *.site1.com
</VirtualHost>
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs/site2
ServerName www.site2.info
ServerAlias site2.info *.site2.info
</VirtualHost>
<VirtualHost *:80>
DocumentRoot C:/xampp/htdocs/site3
ServerName www.site3.com
ServerAlias site3.com *.site3.com
</VirtualHost>
And the .htaccess generated by wordpress
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress