Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the following URL:

http://hostname/Numark-iDJ-Live-DJ-software-controller-for-iPad-iPhone-or-iPod/product/?mid=1&pid=B004JPPO94&src=hmb_numark

(also, the 'Numark.. to ipod..' is the 'title')

I want to write a rule to redirect this URL to the following URL

http://hostname/product/?sid=1&pid=B004JPPO94&title=Numark-iDJ-Live-DJ-software-controller-for-iPad-iPhone-or-iPod&src=hmb_numark

note the first url contains mid and pid while the second contains pid and sid.

Can someone please help me out and direct me towards the rewrite rule that would work for this case?

Thank You.

share|improve this question

1 Answer

Old URL:

http://hostname/Numark-iDJ-Live-DJ-software-controller-for-iPad-iPhone-or-iPod/product/?mid=1&pid=B004JPPO94&src=hmb_numark

New URL:

http://hostname/product/?sid=1&pid=B004JPPO94&title=Numark-iDJ-Live-DJ-software-controller-for-iPad-iPhone-or-iPod&src=hmb_numark

I have no idea if that's what you actually want as you haven't fully specified the question. This rule also expects that mid, pid and src are all present in the URL and in the given order.

RewriteEngine On
RewriteCond %{QUERY_STRING} mid=(.*)&pid=(.*)&src=(.*)
RewriteRule (.*)/product/ product/?sid=%1&pid=%2&title=$1&src=%3 [R=301,L]
share|improve this answer
Thanks for the quick response but this is not working. I am getting 404 error – Tarun Keswani Jul 29 '11 at 7:11
What's the exact URL you typed in your browser? It should not be possible for this to lead to a 404 error even if it's incorrect. – Dan Grossman Jul 29 '11 at 7:12
Also, what URL did the address bar show when on the 404 page? – Dan Grossman Jul 29 '11 at 7:17
ok, heres the thing...i might have tweaked the url's int he question cos i thought it would make answering it easier...the actual url formats are as follows.... hostname/… which is to be redirected to the following: (also, the 'Numark.. to ipod..' is the 'title' hostname/product/?sid=$2&pid=$3&title=$1&src=$4 . note the first url contains mid and pid while the second contains pid and sid. Thanks – Tarun Keswani Jul 29 '11 at 7:19
1  
Please edit your question rather than putting this in a comment. It's near impossible to read here and makes the Q&A useless for anyone but yourself (helping you personally is only a side-benefit to experts building a repository of answers to recurring programming questions). – Dan Grossman Jul 29 '11 at 7:25
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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