Talk to me about the pros and cons of doing http > http redirects in code vs in IIS.
IIS seems like fewer in-house moving parts, and applies to all file types, for better and worse.
b
bdw429s
08/16/2022, 5:30 PM
I'd say it depends on the redirect, lol
bdw429s
08/16/2022, 5:31 PM
If you need to redirect based on
• application state
• DB values
• session values
then you're stuck with CF.
If you just have a general redirect like
• http -> https
• site.com -> www.site.com
then I'd totally do that in IIS to keep unnecessary load off the CF server.
bdw429s
08/16/2022, 5:31 PM
@Dave Merrill
r
Rodney
08/16/2022, 5:33 PM
I agree with Brad unless you want to capture site redirect data so you can nag users who are lazy updating bookmarks.