I am having a major problem. Please look at my homepage here:
http://www.lasilhouettelingerie.com/

It will redirect you to this page:
http://www.laislhouettelingerie.com/store/

The store used to be under the folder /store and now it's under the folder: /shop. It has been working fine but last night I deleted the /store folder and database since it is no longer useful to me.

Today i cleaned out my cookies and my homepage will not go to: http://www.lasilhouettelingerie.com/ (I do have an index.php page which is custom made and different from my store).

So I am guessing this has to be .htaccess files right? (I do have Simple SEO URL's installed)

In my root folder (public_html) I have an .htaccess file that is blank. I then have a folder which is /shop which has my zen cart files. The .htaccess file located in the /shop folder is as follows:
Code:
#### BOF SSU
Options +FollowSymLinks
RewriteEngine On
# Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
RewriteBase /shop/
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
Why is my homepage (index.php) redirecting to an old folder of: /store that is no longer existant? (and the main .htaccess file is blank and does not point to the old file of /store.com)

Please help!