此代码执行重定向,但使用302状态代码:
<cflocation url="http://stackoverflow.com" addToken="no" />
我在互联网上发现了这个,但我认为它只适用于ColdFusion8。我正在使用ColdFusion7。
<cflocation url="http://stackoverflow.com" addToken="no" statuscode="301" />
你在ColdFusion7中控制状态代码吗?
答案 0 :(得分:8)
<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="http://stackoverflow.com">