Re: Ceon URI Mapping v4.x
Oh ok, I see.
My link was actually to a category and not a specific item. I tried it with the auto gen, and it still doesnt work. I've switched to the auto gen, here is the link -
http://thehockeyjersey.co/store/gift_certificates
Here what the auto gen link "should be" for an item in said category
http://thehockeyjersey.co/store/gift...ft_certificate
But neither still work. It shows up properly in the site menu but when I click, I get the 404.
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
THJCO
But this /thehockeyjersey.co/store/gift_certificates/thehockeyjersey.co_usd100_gift_certificate Is the URL that the 404 is referring to.
Are you manually writing the rewrite or letting the mod do it itself?
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DarkAngel
did you write the url yourself --- in the area to write the url wanted. Or did you just tic the auto-generated box and let the module create the url?
Doh, sorry DarkAngel. Seems we were thinking the same :cheers: but I didn't read back to this page until after writing my post.
So THJCO try doing as DarkAngel originally suggested; check the auto generate option rather than you doing it manually. It looks to me like your adding your domain unnecessarily...twice let alone once.
Re: Ceon URI Mapping v4.x
Alright then, you write or use the auto gen and still it does not url right to the item.
the .htaccess information you provided looks right (you did copy it from the admin after you activated the module).
Is it sitting in the root (the main area where all your site files and NOT the store folder, right?
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
picandnix
But this /thehockeyjersey.co/store/gift_certificates/thehockeyjersey.co_usd100_gift_certificate Is the URL that the 404 is referring to.
Are you manually writing the rewrite or letting the mod do it itself?
I think I need to go back to sleep, I'm not reading what's been written/tried already. :sleepy:
Re: Ceon URI Mapping v4.x
ha yeah Im using all auto gen links in the quoted posts above. Ill try reuploading the files today who knows perhaps I missed something.
Re: Ceon URI Mapping v4.x
All files reuploaded, still 404'in
Re: Ceon URI Mapping v4.x
Ok, its been fixed.
At the top of the document, this needed added.
Options -Multiviews
Then rewrite rule was replaced with
Code:
RewriteRule ^(.*)favicon.ico - [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+) /store/index.php?$1 [L]
Now the only problem, is that filtering doesnt work.
http://thehockeyjersey.co/store/new
^NICE!!
But try to filter, it just resets itself and doesnt filter at all.
Re: Ceon URI Mapping v4.x
and also pagination doesnt work, I cant move to page 2 or 3 when within this category
http://thehockeyjersey.co/store/authenticjerseys/nhl
Not good!!
Re: Ceon URI Mapping v4.x
Ok, its been fixed.
Last line needed changed to RewriteRule ^(.+) /store/index.php [QSA,L]
Thanks everyone!