You will need to change it to something like this before it will work right.
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^jambaroo.co.uk$ [NC]
RewriteRule (.*) http://www.jambaroo.co.uk/$1 [R=301,L]
Printable View
You will need to change it to something like this before it will work right.
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^jambaroo.co.uk$ [NC]
RewriteRule (.*) http://www.jambaroo.co.uk/$1 [R=301,L]
i have also same error :dontgetit
What kind of error are you having. You have not provided enough information. Go back and start over installing this module again. Read the documentation carefully. There is no other module that gives more detail on HOW TO than this one. You have did something wrong. Check your .htaccess file. That is where most problems lie when people don't create the .htaccess file rules correctly.
I get a file not found error when i turn the uri mapping back on. I would re-install the mod but seeing as i had it working 100% for weeks prior to adding the re-direct then i know i installed it correctly. If i remove the non-www to www re-direct then turn the URI mapping on it works fine.... so its something to do with the non-www to www mapping i've added.
Unfortunately - i don't have a clue what and i've read the config text all the way through and it doesn't appear to mention set up with non-www to www redirection.
Thanks
Hi, i have one question.
If i will manually set mapping into database 4 example to page shippinginfo how can i change location header what user can see.
Links like www.shop.cz/Shipping_Info will be displayed well, but user can still see address www.shop.cz/index.php?main_page=shippinginfo?
did i missed something?
Thanks to very fast reply. I get a file not found error when i turn the uri mapping back on. act i have to install 2, 3 times 3.6.3 version for my zen cart 1.3.9b. but still we got same error page cannot found.
one thing at present my sites is working in folder not at root.
like
http://www.example.com/abc/index.php...age=page&id=16
but when i on url mapping
than url is same to see all people but when we click on it
its goes
www.example.com/abc/contact_us
got page cannot found.
i also updates in my htaccess files
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
You'll have to add records to the database for these pages. The
instructions are in the docs : "Specifying the current URI Mapping for any other Zen Cart page"
In your phpMyAdmin on the left click ceon_uri_mappings at the top click insert and fill in the information as showed.
uri: /shipping-information
main_page: checkout_shipping
current_uri: 1
language_id: 1
date_added: NOW()
First of all you need to download the current version of Ceon URI Mapping (SEO)
After that you need to check to make sure your .htaccess file is right. Read the documentation again how to install this software. You have miss something.
Example rule for stores installed in a folder other than the root of the site, with the admin named “admin”.
As mentioned above, if a store is not installed in the root directory of a site, that is, if in includes/configure.php the DIR_WS_CATALOG define isn't exactly as follows:
define('DIR_WS_CATALOG', '/'); Then the rewrite rule needs to be modified to point to the store's folders.
For example, if the store's DIR_WS_CATALOG define is:
define('DIR_WS_CATALOG', '/shop/'); Then all of the RewriteConds from “# Don't rewrite admin directory” downwards need to have the forward slash, “/”, changed to “/shop/”.
If the store has other pages on the site which aren't part of Zen Cart - that is, from the example above, pages which aren't in the “/shop” directory - then a RewriteCond must also be added so that these other pages keep working.
The resulting rewrite rule would then be as follows.
Quote:
Please Note: The following example rule is intended for a .htaccess file placed in the same directory as the Zen Cart installation's index.php file.
If placing the above rule in a VirtualHost directive for the site, the main RewriteRule needs to have the store's relative directory path prepended. The RewriteRule should be changed to:Quote:
RewriteEngine On
# ONLY rewrite URIs beginning with /shop/
RewriteCond %{REQUEST_URI} ^/shop/ [NC]
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/shop/admin [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/shop/editors [NC]
# Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel [NC]
RewriteCond %{REQUEST_URI} !/frontend [NC]
# Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]
Modifying the rule for stores which have renamed the admin directory.Quote:
RewriteRule .* /shop/index.php?%{QUERY_STRING} [L]
If the store does not use “admin”. for the name of the admin directory then the RewriteCond for the admin directory must be modified: “RewriteCond %{REQUEST_URI} !/admin [NC]”.
For example, if the store's admin directory is named “store_manager” and Zen Cart is installed in the root directory of the site, the example rewrite rule above would be modified as follows:
Obviously, if the store isn't installed in the root directory of the site, the RewriteCond for the admin folder would have to be modified accordingly.Quote:
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/store_manager [NC]
As an example:
Quote:
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/shop/store_manager [NC]