Copy link to clipboard
Copied
I inheirited links ending with .jsp. The domain is now pointing to my cf9 standard / iis7.5 web server.
When I tried to open the my version of the .jsp file or perform a url rewrite, I recevied an error that JSP is not licenced on Standard edition.
However, I don't want to run a jsp as a jsp template. I would like it to run as a .cfm file. Or ignore the file completely so I can use a url rewrite to point to my cfm file.
I tried to disable JSP from the default-web.xml files. I am now getting an error 403:Forbidden.
What else needs to be done to stop Coldfusion from recognizing jsp files?
Thanks,
Gary
The issue has been resolved.
The first step was to disable *.jsp references from all the default-web.xml files.
Then apply a url rewrite. ^(.*)jsp$ which redirects to {R:1}cfm{R:2}
Thanks.
Copy link to clipboard
Copied
The issue has been resolved.
The first step was to disable *.jsp references from all the default-web.xml files.
Then apply a url rewrite. ^(.*)jsp$ which redirects to {R:1}cfm{R:2}
Thanks.