| | |
Rewrite advice: What is the best solution to this problem?
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Sep 2008
Posts: 23
Reputation:
Solved Threads: 0
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.
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.
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!!!
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.
•
•
Join Date: Sep 2008
Posts: 23
Reputation:
Solved Threads: 0
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?
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?
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:
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)
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.
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.
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.
AJAX is not a programming language, scripting language or any other sort of language.
It is acheived by using JavaScript http functions.
So, AJAX = JavaScript.
It is acheived by using JavaScript http functions.
So, AJAX = JavaScript.
•
•
Join Date: Sep 2008
Posts: 23
Reputation:
Solved Threads: 0
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
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
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.
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)
Options +FollowSymLinks RewriteEngine on RewriteRule categories_and_featured_products-pid-([0-9]+)\.htm$ categories_and_featured_products.php?pid=$1 RewriteRule subcategories_and_featured_products-pid-([0-9]+)-cid-([0-9]+)\.htm$ subcategories_and_featured_products.php?pid=$1&cid=$2 RewriteRule productsincategories-ban-([0-9]+)-cat-([0-9]+)\.htm$ productsincategories.php?ban=$1&cat=$2 RewriteRule products-ban-([0-9]+)-cat-([0-9]+)\.htm$ products.php?ban=$1&cat=$2
AJAX is not a programming language, scripting language or any other sort of language.
It is acheived by using JavaScript http functions.
So, AJAX = JavaScript.
It is acheived by using JavaScript http functions.
So, AJAX = JavaScript.
•
•
Join Date: Sep 2008
Posts: 23
Reputation:
Solved Threads: 0
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.
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.
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.
AJAX is not a programming language, scripting language or any other sort of language.
It is acheived by using JavaScript http functions.
So, AJAX = JavaScript.
It is acheived by using JavaScript http functions.
So, AJAX = JavaScript.
![]() |
Other Threads in the PHP Forum
- Previous Thread: PHP Count & Display Question
- Next Thread: Need Help In PHP
| Thread Tools | Search this Thread |
ajax apache api array arrays beginner binary broken cache cakephp checkbox class cms code confirm cron curl customizableitems database date display dynamic echo email error external file files folder form forms forum function functions google header headmethod howtowriteathesis href htaccess html iframe image include insert integration ip java javascript joomla limit link login loop mail malfunction menu method mlm multiple mysql neutrality oop paypal pdf php phpmysql play problem query question radio random recursion regex remote root script search select server sessions sms soap source space sql syntax system table tutorial update upload url validator variable video web xml youtube





