The problem is you have your entire store in the "catalog" folder. I assume you did this to try and retain the links when you moved from the html catalog to DSEFU.
Instead, move it back to the root directory by doing the following:
1. Log into your admin section and move your images location from the file system, to the database.
2. Transfer all your files out of the "catalog" directory, into your root directory. Ensure there is no index.html in this root directory.
3. Open config.php and find:
Remove /xcart so it looks like:Code:$xcart_web_dir ="/xcart";
4. Log back into your admin section, and move your images location from the database back to the file system.Code:$xcart_web_dir ="";
Then redirect your old links using this code in an .htaccess file [will also ensure that your domain always uses the www] (substitute yourdomain.com):
You also need to ensure that home.php is loaded when the domain is loaded, since there is no index.html, and as by default x-cart tries to do a redirect from index.php to home.php (which isn't even a 301 redirect). You can do this with this code in .htaccess:Code:RewriteEngine On RewriteCond %{HTTP_HOST} ^yourdomain.com RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L] RewriteRule ^store/(.*)$ http://www.yourdomain.com/$1 [R=301,L]
I'll address your ticket with us during business hours tomorrow.Code:DirectoryIndex home.php index.html index.php index.htm
Submit Your Article
Forum Rules

Reply With Quote
