I recently followed a guide to move my WordPress blog from a sub directory to the root of my website. The Guide required me to move the files, export and modify the MySQL database and then delete the tables and import the modified data back into the table.
When I got to the root address of the site I get redirected to the old directory where the blog used to be. Everything about the page loads except the homepage content.
If I click on the other links they load fine with the root address of the site.
I tried switching the Front Page in the Dashboard and it seems that every page works fine except the one I currently have selected as the Front Page.
Here is the content of my htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Below is the address of the site.
Thanks in advance for any help.