Editing struts-config.xml

If your publication does not already have a struts-config.xml file in the WEB-INF folder, then create one and add the following content to it:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC 
          "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" 
          "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
  <global-forwards>
    <forward name="not-logged-in" path="/"/>
  </global-forwards>
  <controller forwardPattern="$P" pagePattern="$P" debug="2" locale="true"
              processorClass="com.escenic.forum.struts.presentation.Utf8RequestProcessor"/>
  <message-resources parameter="com.escenic.forum.Messages"/>
</struts-config>

If the WEB-INF folder does already contain a struts-config.xml file, then add the highlighted section of the above content to it.