这个重定向在哪里设置?

时间:2012-07-12 19:31:17

标签: iis redirect coldfusion web

我正在试图找出为我正在管理的网站设置重定向的位置。它是一个IIS服务器,应用程序主要是冷融合。我已经确定IIS设置没有指定任何重定向。我发现没有冷融合设置允许从服务器端重定向。没有'< cflocation>'或冷链接文件中的标题更改将导致此重定向。最后,任何.htaccess文件中都没有重定向。还有什么其他可能的原因/位置可以设置301重定向?

谢谢!

1 个答案:

答案 0 :(得分:0)

重定向也可以使用cfheader完成:

<cfheader statuscode="301" statustext="Moved permanently" />
<cfheader name="location" value="http://www.mysite.com/new-location-for-content/" />

或者也可以有Javascript重定向,例如:

document.location='http://www.mysite.com/new-location-for-content/';

或者可能有一些ASP等等。

此处有更多示例http://www.somacon.com/p145.php