我前一阵子创建了它,以将现有应用程序从旧路径重定向到新路径。我相信它依赖于子文件夹的存在,例如“anydir/anydir/”实际上必须是真正的文件夹。我基本上只是将它粘贴到现有的应用程序文件夹中,因此配置、应用程序和索引文件被覆盖,然后根据配置中的定义进行重定向。
重定向定义是正则表达式,因此如果需要,实际上会变得相当复杂。它是一个有序数组,因此您可以先放置更具体的重定向,最后放置更通用的重定向。您可以在最后包含“最后的手段”重定向,或者如果没有定义匹配,则允许发生错误——这取决于您想要的精确度。
配置/config.cfm
<cfset config = {
debug=true
, redirects = [
{find="^/path/temp/dir2/(.+)$", replace="http://temp.domain.com/dir2\1"}
, {find="^/path/temp/(.+)$", replace="http://temp.domain.com/\1"}
]
} />
索引.cfm
[blank file]
应用程序.cfc
<cfcomponent>
<cfset this.name="Redirect#hash(getCurrentTemplatePath())#"/>
<cfinclude template="config/config.cfm" />
<cffunction name="onRequestStart">
<cfset redirect(cgi.path_info) />
</cffunction>
<cffunction name="onMissingTemplate">
<cfargument name="targetPage" required="true" />
<cfset redirect(arguments.targetPage) />
</cffunction>
<cffunction name="redirect">
<cfargument name="targetPage" required="true" />
<cfset var i = 0 />
<cfset var newpath = "" />
<cfloop from="1" to="#arraylen(variables.config.redirects)#" index="i">
<cfif refindnocase(variables.config.redirects[i].find, arguments.targetPage)>
<cfset newpath = rereplacenocase(arguments.targetPage, variables.config.redirects[i].find, variables.config.redirects[i].replace) />
<cfif len(cgi.query_string)>
<cfset newpath &= "?" & cgi.query_string />
</cfif>
<cfif variables.config.debug>
<cfoutput>#newpath#</cfoutput>
<cfabort>
</cfif>
<cflocation url="#newpath#" addtoken="false" />
</cfif>
</cfloop>
<cfthrow type="custom.redirect.notfound" />
<cfabort>
</cffunction>
</cfcomponent>