由于疾病的持续副作用,我正在重新格式化我的网站。我负担不起编写手写教程所需的时间,因此我只用视频格式替换所有内容。我所有的内容都在 Tomcat 服务器上。我与我的网站有很多链接,并希望保留此流量。我目前采取的措施是使用发送 301 重定向的过滤器。我是否违反了任何标准,仅根据错误代码在 web.xml 中指定重定向到我的主页?例如:
...
<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>
...