I have a web application hosted in Apache Tomcat I am looking for apache configuration to restrict downloading exe's when I hit the URL
when I hit http://<server_name>/abc/xyz.exe
application works normally if appended with append '/' to the end.. like http://<server_name>/abc/xyz.exe\
the junk executable xyz.exe is downloaded on to the browser
Here is my web.xml content
<init-param>
<param-name>_webengine0</param-name>
<param-value>web:local</param-value>
</init-param>
<init-param>
<param-name>web:local</param-name>
<param-value>pdmweb.exe</param-value>
</init-param>
can you please let me know if there is any apache configuration to be placed to restrict file downloads (specifically .exe) from application