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.

Read More

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>

Related posts

Leave a Reply

3 comments