Possible Duplicate:
.htaccess, Clean URL, unwanted 301 redirect, 1AND1
Mod_Rewrite is redirecting.
RewriteRule ^viewPage/([^/]+)/([^/]+)/$ /viewPage.php?ID=$1&Title=$2 [NC,L]
Typing into browser:
www.domain/viewPage/123/abc/
the browser loads the page as expected but the URL has been 301 redirected to:
www.domain/viewPage.php?ID=123&Title=abc
I don't want the page to redirect from www.domain/viewPage/123/abc/ to www.domain/viewPage.php?ID=123&Title=abc.
How do I get this to work; I have a feeling this is to do with "301 Moved Permanently" status still in apache cache"?
Also, one more note. On the home laptop it is working as desired but it is breaking on the 1and1 server.