trying to serve html file containg cfm code with l...
# lucee
g
trying to serve html file containg cfm code with lucee, i added the url-pattern in the web.xml as:
Copy code
<url-pattern>/index.html/*</url-pattern>
    </servlet-mapping>
but when i view my html in browser, i see raw cfm code in the form <cfinclude, i did restarted my server after the change i did
m
if you are just wanting to server the one index.html page up as a CFM you should be able to take off the /*
<url-pattern>/index.html</url-pattern>
if you want to server all html pages as cfm you should be able to change it to *.html
<url-pattern>*.html</url-pattern>
g
Thanks, that worked