I am trying to redirect some old URL’s and EE is hijacking them. Specifically, this is the url I am trying to redirect.
Redirect 301 /trips/tripdetail.cfm?TripID=26 http://adventurescrosscountry.com/trips/africa-service
It displays my template in the template group ‘trips’ and the last entry for that channel. Bascially, it is ignoring the redirect thinking that you want to display an entry. Here is the full htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
# If 404s, “No Input File” or every URL returns the same thing
# make it /index.php?/$1 above (add the question mark)
</IfModule>
#################################################
# 301 Redirects
#################################################
Redirect 301 /trips/search/category/trip-activites /trips/calendar
Redirect 301 /trips/search/category/trip-locations /trips/map
Redirect 301 /trips/tripdetail.cfm?TripID=26 http://adventurescrosscountry.com/trips/africa-service