2

由于疾病的持续副作用,我正在重新格式化我的网站。我负担不起编写手写教程所需的时间,因此我只用视频格式替换所有内容。我所有的内容都在 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>

...
4

1 回答 1

1

这样做完全没有问题。请参阅下面的文档(我知道它是 web 逻辑,但它适用于所有 java webapp)

http://docs.oracle.com/cd/E13222_01/wls/docs81/webapp/web_xml.html#1017571

请确保您的错误页面不会自行生成错误。

于 2013-01-10T09:23:09.293 回答