Hi,
I have following rule
--------------------------------------------------------
RewriteMap urlspm txt:/usr/local/etc/manual_redirects.txt
RewriteCond ${urlspm:%{REQUEST_URI}} ^(/.*)$
RewriteRule ^.*$ %1 [P,L]
--------------------------------------------------------
and in manual_redirects.txt i have following.
--------------------------------------------------------
/Abc-173000-b /ex/control/brandLanding?SEARCH_STRING=Abc&~category_id=B173
--------------------------------------------------------
I get following error.
in firefox
--------------------------------------------------------
The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept cookies.
--------------------------------------------------------
in google chrome
--------------------------------------------------------
The webpage at [
xyzcom...] has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
--------------------------------------------------------
in IE it goes nowhere, i tried for half hour and it shows its processing.
Now, when I change my .txt file to following(for test purpose) it works.
--------------------------------------------------------
/Abc-173000-b /ex/control/category/~category_id=B173
--------------------------------------------------------
I have a feeling that my URL request is getting into infinite loop somehow. But not sure how and where.
I would appreciate the help.
Thank you in advance.