If SEO URL's are enabled CubeCart will write search engine optimised URL's. If you get blank pages or 404 page not found errors please check the following.
- Your web server must be powered by Apache with mod_rewrite support.
- If there is no .htaccess file please create one in the root directory of your store with the content;
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)\.html?$ index.php?seo_path=$1 [L,QSA] - If there already is a .htaccess file please make sure it contains the code above.
- If you have a .htaccess file which does have the code content above it may be necessary to specify the root relative path to your store. This can be done by adding the following line just below "RewriteEngine On".
Example for http://www.example.com/store
RewriteBase /store/
Example for http://www.example.com
RewriteBase /
If you still encounter problems please contact technical support or seek help on our forums.
Comments
0 comments
Please sign in to leave a comment.