This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make SEO friendly url in PHP?
05-22-2014, 07:34 AM
Post: #1
How to make SEO friendly url in PHP?
Hello Everyone.

We wanted to know about how to make seo friendly url.

Currently my website has oshopindia.com/products.php?catid=15.
We want to change it to oshopindia.com/products/mobile-phones.

We tried Mod Rewrite but it doesnot work. Is there any alternate way?

Please let me know the same.

Manthan Thakkar
Oshopindia

Ads

Find all posts by this user
Quote this message in a reply
05-22-2014, 07:42 AM
Post: #2
 
Yes There are number of ways to promote your website. Go on this site http://www.elance.com . both sites are best for you. In less amount you can hire expert person to promote your website

Ads

Find all posts by this user
Quote this message in a reply
05-22-2014, 07:48 AM
Post: #3
 
You haven't shown how you used Mod Rewrite so it's not possible to say why it didn't work. But probably because your mod rewrite does not deliver the "15" which your system needs to know what the category is.

It should read:
RewriteRule /products/(.*)-(.*)\.php$ products.php?catid=$2

and then the URL would be:
oshopindia.com/products/mobilephones-15

This passes the "15" which the shopping cart needs to call the correct category.

However if you don't want the "15" to show then you will need a coding solution. Create a database with 'clean URLs' in it and then in your modrewrite is as follows:
RewriteRule /products/(.*)\.php$ products.php?cat_url=$1

Use GET to pick up the cat_url variable and then look up in the database the corresponding catid and then execute the rest of the code.
Find all posts by this user
Quote this message in a reply
05-22-2014, 08:01 AM
Post: #4
 
Dear,

You might get some help from
http://webhostingnoob.com

Good Luck
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)