I've got a url type:- http://www.example.com/products.php?cat=1 which I am able to rewrite to:- http://www.example.com/myproduct1 using the following .htaccess rule:- RewriteRule ^myproduct1$ products.php?cat=1.

What rule would I need to enter if I wanted to rewrite to:- http://www.example.com/myfolder1/myproduct1/?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 0 down vote accepted

For any arbitrary path segments a and b in /a/b/, you can use this:

RewriteRule ^([^/]+)/([^/]+)/$ products.php?segment1=$1&segment2=$2

Edit    In response to your comment: Just put good/boy in your pattern:

RewriteRule ^good/boy$ products.php?cat=1
link|improve this answer
The current links do not have any second segments. I want products.php?cat=1 to be rewritten to something like:- /good/boy, but currently I am only able to rewrite it to:- /boy. – nitbuntu Jan 24 '10 at 14:56
I did try ^good/boy$ products.php?cat=1, but the resulting page does not seem to recognize the css file. with /boy, it displays fine but with good/boy the page is rendered as though there was no css file. – nitbuntu Jan 24 '10 at 15:21
@nitbuntu: You just need to reference your CSS file correctly as now your base URL has changed. Try an absolute path (e.g. /style.css) instead of a relative one (e.g. style.css or ./style.css). – Gumbo Jan 24 '10 at 15:24
@nitbuntu If you use URLs like /a/b/c, you need to take the rewritten URL into account in your links. If you use the same HTML (e.g. via a template) for different steps in the hierarchy, your best bet is either absolute URLs or the base element (which tells the browser to interpret relative URLs as relative to the specified context rather than the current URL). – Alan Jan 24 '10 at 20:14
I'd be interested to know what this base element is? Is it a script that goes into htaccess? – nitbuntu Jan 25 '10 at 10:29
show 1 more comment
feedback

First thing, I assume you want something like http://www.example.com/myproduct2 redirect to http://www.example.com/products.php?cat=2. In this case youd' rather use that rule:

RewriteRule ^myproduct([0-9])$ products.php?cat=$1

Then you can do th same this for your folder, writing something like:

RewriteRule ^myfolder([0-9])/myproduct([0-9])$ products.php?folder=$1&cat=$2

Edit

Then you just have to write:

RewriteRule ^folder1/myproduct1$ products.php?cat=1
RewriteRule ^myfolder/differentproduct$ products.php?cat=2

and so on...

link|improve this answer
Actually I want to rewrite example.com/products.php?cat=2 to:- example.com/myfolder/differentproduct. Currently I am able to get it to example.com/differentproduct – nitbuntu Jan 24 '10 at 14:26
There is no relationship between 'cat=1' and folder1 – nitbuntu Jan 24 '10 at 14:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.