I'm attempting to do a 301 redirect on a Drupal site of mine, that is running the Global Redirect module for clean URL's, etc. The old page does not have a page extension, the new page does. I did the following in my .htaccess file.
Redirect 301 /olddir/page htp://www.mysite.com/newdir/page.html
(http changed to htp)
It seems to go into a loop. Firefox reports "the page is not redirecting properly". The Apache log shows many iterations of below.
/newdir/page.htmlpage.htmlpage.htmlpage.htmlpage.htmlpage.html?q=newdir/page.html
Do I need to perform the redirect in a different manner given its a dynamic Drupal site? I've done this type of redirect for my static sites, and Wordpress also if I'm not mistaken.