Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
tyankee
btw, i see where you might be a Mustang afficionado?? if so, did you check out my mustang site at
http://mustangtraderonline.com. used to be our number #1 with over 20000 visitors per day - until Penguin..
Yep.. drag race and have a hubby who is the Senior Tech Editor of the number one 5.0 Mustang publication. He might be familiar with your site..
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
tyankee
there is NO URI field that shows when you edit a product.. there is a field called Products URL and a field called URI Mapping.. i entered gc1041017.html in the URI Mapping field and when i accessed the product sure enough it tried to find gc1041017.html but came up with a 404 page not found.
Post your .htaccess file so we can take a look at it. This way we can see whatsgoing on.
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
countrycharm
Post your .htaccess file so we can take a look at it. This way we can see whatsgoing on.
it's just the standard htaccess that he recommends:
## BEGIN CEON URI MAPPING REWRITE RULE
RewriteEngine On
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,5}$ [OR]
RewriteCond %{REQUEST_URI} \.(html)$ [NC]
# Don't rewrite any URIs for some, popular specific file format extensions,
# which are not covered by main file extension condition above
RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
# Don't rewrite any URIs for some specific file format extensions,
# which are not covered by main file extension condition above
# Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
#RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/backend [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors/ [NC]
# Don't rewrite logs directory
RewriteCond %{REQUEST_URI} !^/logs/ [NC]
# Don't rewrite catalog directory
RewriteCond %{REQUEST_URI} !^/catalog/ [NC]
# Don't rewrite tempEP directory
RewriteCond %{REQUEST_URI} !^/tempEP/ [NC]
# Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* index.php [QSA,L]
## END CEON URI MAPPING REWRITE RULE
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DivaVocals
URI Mapping field = URI field..
and you are probably getting the 404 error because you have not updated the .htaccess file as per the instructions in the section I keep referring you to.. (sorry.. not trying to be a PITA, but this is a KEY part of accomplishing what you want)
so are so corrrect Keem-O-Sabe.. i updated the htaccess and now that's i've put the different pieces in place i think i got it.. so sorry to be a PITA here but i guess when you're a newbie, you ask dumb questions, hoping for smart answers.. so now it looks like i only have to put my OLD URL into the URI Mapping field and my new URL's will match my old ones. perfect.. thanks again..
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DivaVocals
Yep.. drag race and have a hubby who is the Senior Tech Editor of the number one 5.0 Mustang publication. He might be familiar with your site..
he might be as we were #1 for the biggest keywords - mustangs for sale, and mustang for sale for 6 years in a row - until Penguin.. is that 5.0 mustangs and Super Fords?? maybe we could do some business together..
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
tyankee
so are so corrrect Keem-O-Sabe.. i updated the htaccess and now that's i've put the different pieces in place i think i got it.. so sorry to be a PITA here but i guess when you're a newbie, you ask dumb questions, hoping for smart answers.. so now it looks like i only have to put my OLD URL into the URI Mapping field and my new URL's will match my old ones. perfect.. thanks again..
Glad you got it sorted out..
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DivaVocals
Glad you got it sorted out..
not quite yet.. the product url's work good but the category ones - not so good.. no at all.. i uploaded all the products at http://medievalclothing.co and if you click on the category 'medieval clothing', i get another 404 not found page.. but if you go to a specific product such as http://medievalclothing.co/monksrobe.html - the link works.. is there something special about categories??
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
tyankee
not quite yet.. the product url's work good but the category ones - not so good.. no at all.. i uploaded all the products at
http://medievalclothing.co and if you click on the category 'medieval clothing', i get another 404 not found page.. but if you go to a specific product such as
http://medievalclothing.co/monksrobe.html - the link works.. is there something special about categories??
Please review the readme.. URI's for categories, products, and EZ pages all work the same way.. If the readme is not clear, then it helps if you can let us know what part needs further clarification..
1 Attachment(s)
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DivaVocals
Please review the readme.. URI's for categories, products, and EZ pages all work the same way.. If the readme is not clear, then it helps if you can let us know what part needs further clarification..
darn, i think i read it clearly.. i've attached a screenshot showing i entered the value of medieval-clothing.html in the right field.. the only part of the docs i didn't understand is 'Please Remember: URI mappings entered manually must be relative to the root of the site (“/”), and must be the full path to the category. E.g. “/category-one/subcategory-of-category-one”'
i used the / but don't understand the 'full path' part.. this category is at the root level.
Attachment 11844
Re: Ceon URI Mapping v4.x
Your .htaccess file is not sending URIs including alphanumbericals, a dash "-", and end with ".html" to index.php. You need to update your .htaccess file.