943,724 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 1344
  • PHP RSS
You are currently viewing page 1 of this multi-page discussion thread
Sep 28th, 2008
0

Rewrite advice: What is the best solution to this problem?

Expand Post »
Looking to rewrite the pages of a company I work for, www.whatsshopping.com. The product pages produce URL's as such:

http://www.whatsshopping.com/product...2&cat=LG483BLK

Looking to if possible, rewrite the pages to reflect the product name or category name in the url.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
servantofgod is offline Offline
23 posts
since Sep 2008
Sep 28th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

Well I would suggest giving each product a category (that has a cat number) and then within each category, give each product number (id). Then the address would be something like: products.php?cat=5&id=1
With that you could also use it to browse each category with one PHP script.
Ex.
products.php?cat=5

Try looking at some popular shopping sites such as Amazon and see how they do it. It's always best to learn from the Pro's!!!
Last edited by FlashCreations; Sep 28th, 2008 at 4:39 pm.
Reputation Points: 47
Solved Threads: 47
Posting Whiz
FlashCreations is offline Offline
393 posts
since Sep 2008
Sep 28th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

I'm sorry, I didn't explain it correctly, that is currently how it is. If you click on a product, it currently displays the category # and product id# For example here is an anime movie : http://www.whatsshopping.com/product...65&cat=1931201

the ban= is actually the category id, and cat= is actually the product id.

I am trying to figure out how I can get the url to reflect the product's name instead of ban & cat. How exactly to get it to call the product name from the database instead of those two. And if possible will it have a negative effect if there is more than one product with the same name?
Reputation Points: 10
Solved Threads: 0
Newbie Poster
servantofgod is offline Offline
23 posts
since Sep 2008
Sep 28th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

How about then using something like this:
product.php?cat=3&product=Studio-8
Amazon uses a system that has a product name with spaces replaced with dashes and then a number (Probably the product number). Example of a Amazon URL:
PHP Syntax (Toggle Plain Text)
  1. www.amazon.com/Macromedia-Studio-Win-Mac-Version/dp/B000CS3S04/ref=sr_1_6?ie=UTF8&s=software&qid=1222636154&sr=8-6
Last edited by FlashCreations; Sep 28th, 2008 at 6:11 pm.
Reputation Points: 47
Solved Threads: 47
Posting Whiz
FlashCreations is offline Offline
393 posts
since Sep 2008
Sep 28th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

That would work, now where do you suppose I would find someone who can explain to me how to code that.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
servantofgod is offline Offline
23 posts
since Sep 2008
Sep 29th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

The rewrites will be the easy part as these are just REGEX in your .htaccess file.

The rest of the work would be a huge task, all your links on all pages would need to be updated to the new format.

Take a look at http://www.workingwith.me.uk/article...ng/mod_rewrite for rewrite descriptions and tutorials.
Reputation Points: 96
Solved Threads: 124
Master Poster
Will Gresham is offline Offline
728 posts
since May 2008
Sep 30th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

Well basically the way my site works is this. It is dynamic. I have only four hard coded pages. These four pages are the ones that produce dynamic URLs.

categories_and_featured_products.php, subcategories_and_featured_products.php, products.php, and productsincategories.php.

Now the pages pull information from the MYSQL database whenever someone browses the sight, so to someone who is not tech savvy it seems as if we have thousands and thousands of pages. Really those thousands of pages are only four pages with different information generated each time. For example the 'mobile electronics: mp4' page's url looks like this:

http://www.whatsshopping.com/subcate...pid=46&cid=331

but really it is just subcategories_and_featured_products.php, with information called from the database.

So my issue here is creating and installing the right .htaccess file. Redoing the links on the site is not a problem because I have a constant header and footer.

Can anyone tell me if the following is correct for my .htaccess file? If not, what more do I need?

Options +FollowSymLinks
RewriteEngine on
RewriteRule subcategories_and_featured_products-pid-(.*)-cid-(.*)\.htm$ subcategories_and_featured_products.php?pid=$1&cid=$2

Options +FollowSymLinks
RewriteEngine on
RewriteRule productsincategories-ban-(.*)-cat-(.*)\.htm$ productsincategories.php?ban=$1&cat=$2

Options +FollowSymLinks
RewriteEngine on
RewriteRule products-ban-(.*)-cat-(.*)\.htm$ products.php?ban=$1&cat=$2

Options +FollowSymLinks
RewriteEngine on
RewriteRule categories_and_featured_products-pid-(.*)\.htm$ categories_and_featured_products.php?pid=$1
Reputation Points: 10
Solved Threads: 0
Newbie Poster
servantofgod is offline Offline
23 posts
since Sep 2008
Sep 30th, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

First, you do not need to declare the options and enable the rewriteengine more than once at the top of the file.

Also, I am assuming products and catagories will only be numbers, this being the case it would be good practice to only allow numbers in the query string rather than anything.
This can be done by putting ([0-9]+) which means only allow characters 0 through 9 and the + means 1 or more.
PHP Syntax (Toggle Plain Text)
  1. Options +FollowSymLinks
  2. RewriteEngine on
  3.  
  4. RewriteRule categories_and_featured_products-pid-([0-9]+)\.htm$ categories_and_featured_products.php?pid=$1
  5.  
  6. RewriteRule subcategories_and_featured_products-pid-([0-9]+)-cid-([0-9]+)\.htm$ subcategories_and_featured_products.php?pid=$1&cid=$2
  7.  
  8. RewriteRule productsincategories-ban-([0-9]+)-cat-([0-9]+)\.htm$ productsincategories.php?ban=$1&cat=$2
  9.  
  10. RewriteRule products-ban-([0-9]+)-cat-([0-9]+)\.htm$ products.php?ban=$1&cat=$2
Reputation Points: 96
Solved Threads: 124
Master Poster
Will Gresham is offline Offline
728 posts
since May 2008
Oct 1st, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

Thanks alot. I myself have little programming experience, so whatever information is given is helpful. Actually, products and categories will be less numbers and more actual text. We are reforming that for SEO purposes as well. Can I safely remove the 0-9, or should it be replaced with an alternative?
Last edited by servantofgod; Oct 1st, 2008 at 12:14 am.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
servantofgod is offline Offline
23 posts
since Sep 2008
Oct 1st, 2008
0

Re: Rewrite advice: What is the best solution to this problem?

I would suggest looking into regex extensively as there are many options for this.

if you are using letters, you can define which particular ones you will allow any whether they are caps, lower case or case insensitive.

In rewrites your regex goes in the (), conditions go in the [] and modifiers go between the ] and ), for example, to allow all lower or upper character(Latin, Greek, and Cyrillic character sets only) use ([a-zA-z]+) if you want to internationalize and allow accented characters you would use ([a-z]+) and add [NC] to the end of the line.

Take a search online for regex, specifically for mod_rewrite as there are slight differences you need to use in the .htaccess file compared to some programming/scripting languages.
Last edited by Will Gresham; Oct 1st, 2008 at 12:28 am.
Reputation Points: 96
Solved Threads: 124
Master Poster
Will Gresham is offline Offline
728 posts
since May 2008

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: PHP Count & Display Question
Next Thread in PHP Forum Timeline: Need Help In PHP





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC