Skip to main content
Participant
December 2, 2015
解決済み

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

  • December 2, 2015
  • 返信数 1.
  • 411 ビュー

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

    このトピックへの返信は締め切られました。
    解決に役立った回答 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

    gary4460作成者解決!
    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.