如何在Fusebox 5.1 noxml中创建搜索引擎安全URL?

时间:2009-04-13 15:03:46

标签: coldfusion application.cfc fusebox

如何在Fusebox 5.1 noxml中创建搜索引擎安全网址?

例如,我想要这个: http://www.site.com/index.cfm/app.welcome/

而不是: http://www.site.com/index.cfm?fuseaction=app.welcome

Fusebox 5.1可以做到这一点。我已阅读此article,但它仅适用于xml版本。我知道的很少,我不知道从哪里开始。如何使用noxml版本的fusebox?

更新: 看起来我需要将它添加到我的Application.cfc文件中。仍然没有工作......

FUSEBOX_PARAMETERS.myself = "index.cfm/fuseaction/";
FUSEBOX_PARAMETERS.queryStringStart = "/";
FUSEBOX_PARAMETERS.queryStringSeparator = "/";
FUSEBOX_PARAMETERS.queryStringEqual = "/";

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

Fusebox 5.1允许您通过允许更改来使用SES URL? &安培;至 /。您仍然需要提供自己的重写器。但是,如果你能够升级到5.5,那么它也可以处理重写。

示例重写器

http://www.fusebox.org/forums/messageview.cfm?catid=31&threadid=6117&STARTPAGE=2

<cfscript>
// SES converter
qrystring = ArrayNew(1);
if ( Find("/",cgi.path_info) eq 1 and Find("/#self#",cgi.path_info) eq 0 ) {
qrystring = cgi.path_info;
} else if ( Len(Replace(cgi.path_info,"#self#/","")) gt 0 ) {
qrystring = ListRest(Replace(cgi.path_info,"#self#/","#self#|"),"|");
} else if ( FindNoCase("#self#/",cgi.script_name) gt 0 ) {
qrystring = ListRest(Replace(cgi.script_name,"#self#/","#self#|"),"|");
}
arQrystring = ListToArray(cgi.path_info,'/');
for ( q = 1 ; q lte ArrayLen(arQrystring) ; q = q + 2 ) {
if ( q lte ArrayLen(arQrystring) - 1 and not ( arQrystring[ Q ] is myFusebox.getApplication().fuseactionVariable and arQrystring[ q+1] is self ) ) {
attributes['#arQrystring[ Q ]#'] = arQrystring[ q+1];
}
}
</cfscript>

如果您选择使用Coldcourse ......

http://coldcourse.riaforge.com

以下将帮助您入门。如果需要/index.cfm/circuit/action/格式化URL,则可以忽略服务器端重写(IIS的ISAPI)。但是如果你想要/ circuit / action /或/ blah /你需要把它变成服务器端。

<强>的Application.cfc

将onApplicationStart(或onRequestStart用于测试)放入内存中。

<cfset application.coldcourse = createObject("component","components.util.coldcourse").init("/config/coldcourse.config.cfm")>

<强> index.cfm 在框架加载之前放置

<cfset application.coldcourse.dispatch(cgi.path_info, cgi.script_name) />

coldcourse.config.cfm (示例配置)

<cfset setEnabled(true)>
<cfset setFrameworkEvent("action")>
<cfset setFrameworkSeparator(".")>
<cfset setFrameworkActionDefault("")>
<cfset setUniqueURLs(true)>
<cfset setBaseURL("http://www.mysite.com/index.cfm")>

<!--- CUSTOM COURSES GO HERE (they will be checked in order) --->
<!--- for http://www.mysite.com/about/ pages --->
<cfset addCourse("components")>
<cfset addCourse(pattern="about",controller="main",action="about")>
<cfset addCourse(pattern="contact",controller="main",action="contact")>
<cfset addCourse(pattern="help",controller="main",action="help")>

<!--- If nothing else matches, fall back to the standard courses (you probably shouldn't edit these) --->
<cfset addCourse(":controller/:action/:id")>
<cfset addCourse(":controller/:action")>
<cfset addCourse(":controller")>

安装ISAPI重写

确保使用正确的重写正则表达式,因为版本2.0与3.0不同。

2.0脚本示例:

# Coldcourse URL Rewrite for CF
IterationLimit 0
RewriteRule ^(/.+/.+/.*\?.+\..*)$ /index.cfm/$1
RewriteRule ^(/[^.]*)$ /index.cfm/$1

禁用检查网络服务器上是否存在文件

如果您的网络日志中出现404错误,请为IIS执行此操作。

  1. 打开IIS管理器
  2. 右键单击某个站点,然后选择“属性”
  3. 单击“主目录”选项卡
  4. 单击“配置”按钮 (对话框右下方)
  5. 单击.cfm扩展名并选择 '修改'
  6. 左下方的复选框:“检查一下 文件存在“