Page 1 of 2

How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 1:13 am
by cbishwaraj
Hi Opencart Community,
I am adding products in my site and the opencart is creating its own numeric url instead of SEO friendly URL.

For example, If I am placing product - 'fossil watch' : I would like to have
www.domain.com/fossil-watch.php or html..........instead of www.domain.com/category&path=48....

I don't know how to do this in Opencart, is there any settings in admin panel for url or seperate plugins for this ??? ....Can anybody help me on this PLEASE ??

I would like to know how to place SEO friendly url for my products.

I would appreciate, if you could please help me on this.

Sincerely,
JOHN , NY

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 6:11 pm
by SteveSherry
Hi John,

This is done whilst setting up the products, you need to fill in the SEO Keyword box.
Then enable seo urls from the settings page.

Steve...

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 10:32 pm
by Maansy
SteveSherry wrote:Hi John,

This is done whilst setting up the products, you need to fill in the SEO Keyword box.
Then enable seo urls from the settings page.

Steve...
i did exactly what you said and yes it shows the SEO Friendly URL link, but when i click the link of that product i get the 404 eroor

did i miss something here?

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 10:36 pm
by SteveSherry
ok, just to check....
you have enabled seo urls in the admin>settings page

You have renamed htaccess.txt to htaccess

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 10:36 pm
by Xsecrets
you need to rename .htaccess.txt to .htaccess

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 10:39 pm
by Maansy
Xsecrets wrote:you need to rename .htaccess.txt to .htaccess
i did already, but no luck

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 10:40 pm
by Maansy
SteveSherry wrote:ok, just to check....
you have enabled seo urls in the admin>settings page

You have renamed htaccess.txt to htaccess
yes
i am on free hosting, would that matter anyways?

Re: How to create SEO friendly URL ?

Posted: Tue Jul 13, 2010 10:45 pm
by SteveSherry
what is the store URL?

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 12:19 am
by Maansy
SteveSherry wrote:what is the store URL?
here
choose the 1st product (20 Kenyan)

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 12:35 am
by SteveSherry
possibly because the catagory doesn't have seo urls as well?
If this doesn't solve it, please PM me a login for your admin

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 12:47 am
by Maansy
SteveSherry wrote:possibly because the catagory doesn't have seo urls as well?
If this doesn't solve it, please PM me a login for your admin
i think its due to the free host
i added SEO to the category but when i click the category link i ger an error. take a look (Click FLOWERS category)

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 3:29 am
by Maansy
Is there a specific option on the serve that allows running SEO friendly url?

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 4:10 am
by SteveSherry
It is all controlled by the setting page within the admin and also the htaccess file.

Can you try the following in htaccess:
Find:
OptionsFollow+Symlinks
Change to:
#OptionsFollow+Symlinks

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 4:36 am
by Moggin
Maansy wrote:Is there a specific option on the serve that allows running SEO friendly url?
I think you need mod_rewrite enabled. Some hosts don't have this.
Otherwise, as Steve says, it's controlled by store settings working with .htaccess. There's one more thing: your shop is in a subfolder, /store. Does your htaccess read

RewriteBase /store/ ?
.. I missed that myself the first time.

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 4:45 am
by SteveSherry
Right, got it,
SEO urls have to be unique, they cannot be duplicated either as a product or as a category.
Your store has the following structure
Flowers
Roses
Lillies
Tulips
All of these categories and subcategories have the same seo url of flowers.

Doing this causes a problem with using seo urls

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 4:46 am
by SteveSherry
You can see this when you go to this page http://lafloria.0fees.net/store/index.p ... ry&path=35 and hover over the 3 subcategories.

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 5:53 am
by Maansy
SteveSherry wrote:Right, got it,
SEO urls have to be unique, they cannot be duplicated either as a product or as a category.
Your store has the following structure
Flowers
Roses
Lillies
Tulips
All of these categories and subcategories have the same seo url of flowers.

Doing this causes a problem with using seo urls
ok. i deleted the seo for the main category (Flowers) and i only added seo: roses to the Roses category.
but still give me an error.

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 5:57 am
by Maansy
Moggin wrote:
Maansy wrote:Is there a specific option on the serve that allows running SEO friendly url?
I think you need mod_rewrite enabled. Some hosts don't have this.
Otherwise, as Steve says, it's controlled by store settings working with .htaccess. There's one more thing: your shop is in a subfolder, /store. Does your htaccess read

RewriteBase /store/ ?
.. I missed that myself the first time.
i believe its enabled

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 6:06 am
by Maansy
Moggin wrote:
Maansy wrote:Is there a specific option on the serve that allows running SEO friendly url?
I think you need mod_rewrite enabled. Some hosts don't have this.
Otherwise, as Steve says, it's controlled by store settings working with .htaccess. There's one more thing: your shop is in a subfolder, /store. Does your htaccess read

RewriteBase /store/ ?
.. I missed that myself the first time.
yes. this did the trick :)
i added store:
RewriteBase /store
thank you Moggin god bless you

Re: How to create SEO friendly URL ?

Posted: Wed Jul 14, 2010 8:06 am
by Moggin
Maansy wrote: yes. this did the trick :)
i added store:
RewriteBase /store
thank you Moggin god bless you
You're welcome, glad to help 8)