Aug 7, 2012 at 7:52 PM
Edited Aug 8, 2012 at 6:00 PM
|
I am using IIRF to redirect bad URL requests to good URLs.
The problem I am having is with requested URL case-sensitivity.
It appears to make a difference when the old URL has some Caps, or is all lowercase.
Example:
I added this entry
/Products/Booster-Bath-Ramp-by-Paws-For-Thought__BR600.aspx
to redirect to
/BR600.aspx
Works great!
BUT, this URL request (same URL as above, but all lowercase) doesn't redirect
/products/booster-bath-ramp-by-paws-for-thought__br600.aspx
#############
I am only using ReDirect rules.
Is there a setting to turn off case sensitivity?????
So I don't have to have two separate line entries (Upper & lower Case: see below example) for the same URL request?
RedirectRule ^/Products/Booster-Bath-Ramp-by-Paws-For-Thought__BR600.aspx$ /BR600.aspx [R=301]
RedirectRule ^/products/booster-bath-ramp-by-paws-for-thought__br600.aspx$ /BR600.aspx [R=301]
|