Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 06-23-2010 06:57:50

antboy
Member
Registered: 07-12-2009
Posts: 27

HD SEO Urls

sorry to repeat this it may get missed it just added to the other thread

i am also having problems getting the HD SEO Modules URLS functioning and whilst i can get the standard seo urls i would like to get rid of the ecom-catshow part of the url and just have the descriptive url like

have tried the following with and without the artimages bit in the rewrite - but just seems to still make the standard seo url

Code:

e.g.http://www.anthonyroach.com.au/artimages/ecom-catshow/Pool.html

would greatly appreciate help with this - anthony

Code:

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^artimages/(.*)-(.*)/(.*)\.html artimages/index.php?app=$1&ns=$2&ref=$3 [L,PT]
RewriteRule ^ecom-catshow/Pool\.html$  http://www.anthonyroach.com.au/artimages/sea-pool-images
[L,R=permanent]
RewriteRule ^artimages/sea-pool-images$ /ecom-catshow/Pool.htm

Last edited by antboy (06-24-2010 05:45:07)

Offline

 

#2 06-23-2010 10:00:39

jj1987
Member
From: Orlando, FL
Registered: 07-14-2008
Posts: 502
Website

Re: HD SEO Urls

Your URL's were cut off in this post, use the code tags to wrap them and then please post them again.

Hate to ask something stupid, but you have added all URL's to the database, correct?



-James Garrett

Offline

 

#3 06-24-2010 05:45:56

antboy
Member
Registered: 07-12-2009
Posts: 27

Re: HD SEO Urls

ok corrected 1st post

Hate to ask something stupid, but you have added all URL's to the database, correct?

yep so set Default SEO URL as"/ecom-catshow/Pool.html"

and

High Definition SEO URL as "/sea-pool-images"

Last edited by antboy (06-24-2010 06:28:25)

Offline

 

#4 06-25-2010 20:54:39

antboy
Member
Registered: 07-12-2009
Posts: 27

Re: HD SEO Urls

anyone those settings don't work though i think i have done it correctly ??

Offline

 

#5 06-26-2010 14:31:32

susan2go
Member
Registered: 04-19-2010
Posts: 81

Re: HD SEO Urls

antboy wrote:

anyone those settings don't work though i think i have done it correctly ??

No, the very  last rule should be:

Code:

RewriteRule ^artimages/(.*)-(.*)/(.*)\.html artimages/index.php?app=$1&ns=$2&ref=$3 [L,PT]

That rule says to stop rewriting anything else, so it has to be last.

Also, if ecom-catshow is in the directory artimages, then the rewritten url needs to written under  that directory.  Like this:

Code:

RewriteRule ^artimages/sea-pool-images\.html$ artimages/ecom-catshow/Pool.html

I have almost 400 urls.  This is getting really tedious. sad

Last edited by susan2go (06-26-2010 15:15:20)

Offline

 

#6 06-26-2010 21:02:07

antboy
Member
Registered: 07-12-2009
Posts: 27

Re: HD SEO Urls

Susan - thanks for your help - 400 urls OMG you poor thing

i tried this following your advice but it didn't work - as before when i mouse over the link it looks ok but the page "/sea-pool-images" doesn't actually exist - so its sort of half working

Code:

Options +FollowSymLinks
RewriteEngine on

RewriteRule ^ecom-catshow/Pool\.html$ http://www.anthonyroach.com.au/artimages/sea-pool-images [L,R=permanent]
RewriteRule ^artimages/sea-pool-images\.html$ artimages/ecom-catshow/Pool.html
RewriteRule ^artimages/(.*)-(.*)/(.*)\.html artimages/index.php?app=$1&ns=$2&ref=$3 [L,PT]

then i set     Default SEO URL to "/ecom-catshow/Pool.html" and     High Definition SEO URL to "/sea-pool-images"

what am i still missing ?? -

Last edited by antboy (06-26-2010 21:05:25)

Offline

 

#7 06-26-2010 21:51:53

susan2go
Member
Registered: 04-19-2010
Posts: 81

Re: HD SEO Urls

change this:

Code:

RewriteRule ^ecom-catshow/Pool\.html$ http://www.anthonyroach.com.au/artimages/sea-pool-images [L,R=permanent]

to this:

Code:

 RewriteRule ^ecom-catshow/Pool\.html$ http://www.anthonyroach.com.au/artimages/sea-pool-images.html [L,R=permanent]

and you should be good to go.  The reverse rewrite rule has to match the rewrite rule in the format (extension or not).  Personally, I like the extension .html on my pages rather than just pages with no extensions.

I've rewritten 94 urls today and I'm packing in my .htaccess for the night.

Offline

 

#8 06-27-2010 02:01:32

antboy
Member
Registered: 07-12-2009
Posts: 27

Re: HD SEO Urls

Susan - many thanks that worked - i think i'll just do my categories i don't think i have your stamina to do every image wink

thanks again

Offline

 

Board footer