将旧的 php 站点转换为 spring mvc,同时维护入站链接
我有一个旧的 php 网站,我正在将其转换为 spring mvc,只是为了好玩。现在,在我的 php 网站上,导航链接采用以下格式: http://www.example.com/?p=blog 等等。
我在想我可以在 web.xml 中添加一个类似这样的 url 映射:
<servlet-mapping>
<servlet-name>legacyurl</servlet-name>
<url-pattern>/*p=*</url-pattern>
</servlet-mapping>
然后发送 301,永久移动到新的正确 url。
但据我所知,url-pattern 是不允许的,它肯定不起作用。那么什么是一个好的解决方案呢?在我的 spring mvc 应用程序中,我希望网址的形式为: http://www.example.com/博客/。但是我如何为旧的 url 设置 servlet 映射?
I have an old php site that i'm in the process of converting to spring mvc, just for the fun of it. Now, on my php site the navigation links are in the following format:
http://www.example.com/?p=blog and so on.
I was thinking that i in my web.xml could add a url-mapping kind of like this:
<servlet-mapping>
<servlet-name>legacyurl</servlet-name>
<url-pattern>/*p=*</url-pattern>
</servlet-mapping>
And then just send a 301, permanently moved to the new correct url.
But from what i can tell the url-pattern isn't allowed, it certainly doesn't work. So what would be a good solution to this? In my spring mvc application i would like to have urls in the form of: http://www.example.com/blog/. But how can i setup a servlet-mapping for the legacy urls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 tuckey.org 中的 URL 重写过滤器:
http://www.tuckey.org/urlrewrite/
您可以在 web.xml 中设置过滤器,并在外部 XML 文件中设置配置,将 URL 正则表达式映射到另一个 URL 模式(使用完整的正则表达式替换)。
Use the URL rewrite filter from tuckey.org:
http://www.tuckey.org/urlrewrite/
You set up the filter in web.xml and a config in an external XML file that maps a URL regex to another URL pattern (with full regex replace).