Hi,
We would like to display a .page on 490 site not found situation, thus modified servlet-resource-config.xml as follows but the Livesite returns the source code of the .page file instead of rendering it.
Is there any way to display .page for 490 site not found error? (We do not want to use .jsp and redirect to a certain .page etc.)
<bean id="runtime.invalid.site.code" class="java.lang.Integer">
<constructor-arg value="490"/>
</bean>
<bean id="runtime.invalid.site.page" class="java.lang.String">
<!-- Tried each values separately, not all at once-->
<constructor-arg value="/sites/en/404.page"/>
<constructor-arg value="/en/404.page"/>
<constructor-arg value="/404.page"/>
</bean>