Categories on WordPress stopped working

I built a custom WordPress theme and had tested it out on my server as a demo for my client. Everything worked smoothly on the Browse page. If you clicked a category, it showed you the posts that correspond to the category.

Here is the test page I uploaded to my hosting account (Bluehost):
http://greyepk.com/ilovedocs2/browse/

Read More

I’ve since migrated the site to my client’s private server and now the categories page is no longer working.

Here is the broken page: http://syndicado.com/ilovedocs2/browse/

I’ve tried to reset the permalinks and the .htaccess file to no avail.

Below is the code from my .htaccess page:

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

I used Velvet Blues to adjust the links after migrating the site to the new server, but have since disabled the plugin. I don’t have any other permalink plugins installed on the site.

Any suggestions would be greatly appreciated. Thanks so much for your help!

Related posts