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 have some trouble for mod-rewrite ruleset on my linux + Apache 2.x webserver.

Product PID has CG000XXXX format.

I want to call PID with shorten URL. If i access with www.DOM.com/?1234 call www.DOM.com//product/detail.jsp?pid=BG0001234

I applied following on my httpd.conf

RewriteEngine On
RewriteRule ^/?([0-9]+)$ /product/detail.jsp?pid=BG000$1 [NC,L]

It work.. but call wrong PID.

Please help... Thanks in advance.

share|improve this question
Well, you do say that Product PID has CG... format, but your query strings use BG... – Andrew Mar 22 '11 at 21:56

1 Answer

The rules are ok. Enable debugging on mod_rewrite and look what is happening when you access the url. I presume is a problem between Apache and your java application server.

RewriteLogLevel 3 
RewriteLog "/TMP/rewrite.log"
share|improve this answer

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.