WordPress redirection problem after moving to a new server?

I’ve created a site using wordpress and i moved that from localhost to new server.

The steps i’ve followed is just got backup of old db from localhost and uploaded them to the new server. Changed the WordPress address (URL) & Site address (URL) manually from phpmyadmin.

Moved all the files from localhost to the server

Changed the wp-config with the new server’s db details.

Now i’m able to visit the admin panel of wordpress but not the site.

Its showing the following error,

The page isn’t redirecting properly

Firefox has detected that the server
is redirecting the request for this
address in a way that will never
complete.

This problem can sometimes be caused by disabling or refusing to
accept
cookies.

I think that this must some redirection problem..

My new .htaccess file under new server is

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /veejata/wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /veejata/wordpress/index.php [L]
</IfModule>

3 Answers
3

I solved it myself..

It was issue in the windows server with wordpress 3.1 so i installed the Permalink fix pack @ wordpress.org/extend/plugins/… .

Now its working fine.. I’ve no issues linux server..
I’ve to dive into the thing to know why that is happening in windows server…

Leave a Comment