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.