Skip to main content
Participant
December 2, 2015
Answered

CF9 Standard / iis 7.5. Process .jsp file like a .cfm

  • December 2, 2015
  • 1 reply
  • 409 views

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

    This topic has been closed for replies.
    Correct answer gary4460

    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.

    1 reply

    gary4460AuthorCorrect answer
    Participant
    December 2, 2015

    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.