WordPress URL unexpected redirection
-
My site URL is : http://abcd.com/index.php
I don’t understand why, when I am opening : http://abcd.com/index.php/welcome/ I am redirected to : http://abcd.com/welcome/ which doesn’t exist and displays a 404
My .htaccess is :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /index.php/
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php/index.php [L]
</IfModule># END WordPress
What do you think is wrong ?
Regards,
-
Is this a WordPress.com site or a self-hosted WordPress site using the software from WordPress.org?
- The topic ‘WordPress URL unexpected redirection’ is closed to new replies.