How do you redirect in ColdFusion and control the status code (i.e. 301 instead of a 302)

后端 未结 1 1483
执笔经年
执笔经年 2021-01-18 02:06

This code does a redirect, but uses a 302 status code:


I found this o

相关标签:
1条回答
  • 2021-01-18 03:00

    <cfheader statuscode="301" statustext="Moved permanently"> <cfheader name="Location" value="http://stackoverflow.com">

    0 讨论(0)
提交回复
热议问题