URL requested –> URL/index.php (POST)
-
When a URL is being received by my Apache webserver it seems that it generates another URL request, for some reason.
For example if I type a URL in the browser such as http://myblogsite/2009/10/17/some-post-url/
then I see the following two entries appear in the apache access.log file:
“GET /2009/10/17/some-post-url/ HTTP/1.1” 200 14023 “http:/myblogsite/”
“POST /2009/10/17/some-post-url/index.php HTTP/1.1” 200 59 “http://myblogsite/2009/10/17/some-post-url/”So it seems that by requesting a URL, the GET for the URL is generating a secondary request.
This double URL logging only happened after upgrading from WordPress 2.5.1 to 2.8.4. I checked the log files prior to using 2.8.4 and the second URL request was not present, so it seems to be happening only after upgrading to 2.8.4. It’s probably some simple configuration change I forgot to update, but I cannot find it.
If anyone can help, I would be eternally grateful.
I am using mod_rewrite and have the usual stuff in my .htaccess file, as shown below:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule> -
You did not specify a blog address or reason for posting when you created this topic.
This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you’ll find help at the WordPress.org forums.
If you don’t understand the difference between WordPress.com and WordPress.org, you may find this information helpful.
If you forgot to include a link to your blog, you can reply and include it below. It’ll help people to answer your question.
This is an automated message.
-
Oops, saw this is for content hosted only at WordPress.com.
If anyone knows the answer to this one, I have re-posted it at wordpress.org at:
http://wordpress.org/support/topic/321899
Thanks.
- The topic ‘URL requested –> URL/index.php (POST)’ is closed to new replies.