I am reformatting my site due to constant side-effects of illness. I can not afford the time it takes to do hand written-tutorials and thus am replacing everything with video format only. All my content is on a Tomcat server. I have a lot of linkage to my site and wish to keep this traffick. The current measure I have taken is with a filter that sends a 301 redirect. Am I violating any standardss by just specifying a redirect in web.xml to my home page based on error codes? e.g:
...
<welcome-file-list>
<welcome-file>Buhaugane-hyttefelt-hyttetomter-til-salgs-Filefjell-Mellom-Vestlandet-og-Aust-oslo-bergen.xhtml</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/Buhaugane-hyttefelt-hyttetomter-til-salgs-Filefjell-Mellom-Vestlandet-og-Aust-oslo-bergen.xhtml</location>
</error-page>
<error-page>
<error-code>505</error-code>
<location>/Buhaugane-hyttefelt-hyttetomter-til-salgs-Filefjell-Mellom-Vestlandet-og-Aust-oslo-bergen.xhtml</location>
</error-page>
...