重定向到公共页面
我想将所有请求重定向到公共页面,并且在该公共页面上我想检查此网址是否存在。
例如,我的基本 URL 是 www.iCare.com,
当任何人想要访问他的诊所页面(例如(www.icare.com/myclinic))时,该 url 会被重定向到一个公共页面,在该页面上我会获取当前 url 并进行匹配与 DB 确定此 URL 是否存在。
i want to redirect all request to common page and on that common page i want to check whether this url exists or not.
for example my base URL is www.iCare.com
when any one want to access his clinic page eg(www.icare.com/myclinic) the url is redircted to a common page and at that page i get the current url and matches it with DB that this URL exists or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Filter
(不是普通页面)是你在找什么Filter
(not the common page) is what you are looking forServlet 过滤器是一个更好的选择。使用 servlet 过滤器,您不需要重定向。
Servlet filter is a better option. With servlet filter you need not redirect.