For some reason, when I look at a URL that ends in a folder (for example // localhost: 8500 / website / directory /), index.cfm does not load, and instead returns a 404 error page. I confirmed that the file .. . \ web-inf \ web.xml is used by changing filter mappings to enable the display of .htm and .txt files. In fact, none of the files in the welcome list section are used, even if they exist, which leads me to believe that something is wrong with this section of the web.xml file.
The web.xml files are as follows:
- {install root} \ cfusion \ runtime \ conf \ web.xml
- {root installation} \ cfusion \ Wwwroot \ WEB-INF \ web.xml
Both files contain the same XML as shown below.
<web-app> ... <welcome-file-list id="WelcomeFileList_1034013110672"> <welcome-file>index.cfm</welcome-file> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.txt</welcome-file> </welcome-file-list> ... </web-app>
I recently updated to 6 updates, but I believe that the problem was always in the initial installation. Please note that this is a standalone development server.
Has anyone already decided this or have any ideas on how to proceed other than reinstall CF10 and use IIS?
source share