If you can't move the resources folder and you mustn't use any Tomcat specific settings use Tuckey Url Rewrite Filter. The following rule works for me, so it's able to serve content from the WEB-INF folder:
<urlrewrite>
<rule>
<from>^/images/(.*)$</from>
<to type="forward">/WEB-INF/resources/images/$1</to>
</rule>
</urlrewrite>
Tuckey can handle .htaccess files too but I haven't used it yet. Maybe the linked .htaccess works well with it.
Another solution:
I suppose you've configured the orbeon servlet in the web.xml with an url pattern / as the documentation suggested:
<servlet>
<servlet-name>orbeon-main-servlet</servlet-name>
<servlet-class>
org.orbeon.oxf.servlet.OrbeonServletDelegate
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>orbeon-main-servlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
In Tomcat the DefaultServlet serves static contents, set it for your static content:
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>
org.apache.catalina.servlets.DefaultServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.png</url-pattern>
<url-pattern>*.jpg</url-pattern>
...
</servlet-mapping>
Then complete the url-pattern list. Your linked configuration (which actually points to an Apache HTTP Server configuration, not a Tomcat configuration) is a good starting point.
Please note that these patterns are not regular regexps. Check Java Servlet Specification 12.2 Specification of Mappings for the syntax (here is some example).
Based on your edit the servlet-mapping should be something like this:
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/images/forms_img/*</url-pattern>
</servlet-mapping>
And you have to move the WEB-INF/resources/images/forms_img folder to /images/forms_img in your webapp (so it will be on d:\Server\apache-tomcat\webapps\orbeon3.9\images\forms_img) since the files under the WEB-INF is not available.