我有一个与 CommandBox 设置有关的问题。我使用最新版本的 ColdFusion,我的文件夹结构如下所示:
D:/CommandBox/wwwroot
在wwwroot
我创建index.cfm
文件的文件夹内。该文件仅包含一行代码:
<cfoutput>#now()#</cfoutput>
一旦我在浏览器中运行它,这就是我使用的 url:
http://127.0.0.1:8080/
结果输出是我在浏览器中看到的错误消息:
Forbidden
如果我使用这个 url 代码将产生正确的输出:
http://127.0.0.1:8080/index.cfm
我想知道为什么index.cfm
必须包含在url中?有没有办法设置index.cfm
为默认登陆页面?另外,我在包含此代码的根文件夹C:\Users\myusername\.CommandBox\server\D9F80673BC7799BE959B513656FE8F55-CommandBox\lucee-5.3.6.61\WEB-INF
文件中找到:web.xml
<!-- default file to execute if directory is called with no file name, e.g. http://yourip.com/ !-->
<welcome-file-list>
<welcome-file>index.cfm</welcome-file>
<welcome-file>index.lucee</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
</welcome-file-list>
正如您在代码上方的评论中看到的那样,这应该是默认登录页面。如果有人知道此问题的原因和解决方案,请告诉我。谢谢。