搜索结果 URL 映射
我可以将搜索结果 URL 映射到静态 URL 吗?
如果您搜索stack,大多数搜索引擎结果网址将为/?q=stack,但我想将结果网址映射为/1 >
如果您搜索overflow,结果网址将为/2 ...
你的想法是什么?
Can I map the search result url to a static URL?
If you search stack, most search engine result url will be /?q=stack, but i want to map the result url to be /1
If you search overflow, the result url will be /2
...
What is your ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以通过将“/#”中的 # 视为查询字符串而不是文件来实现此目的。这可以通过您的网络服务器来完成。您可以将该 Search_ID 与关联结果一起存储在数据库中。
Yes, you could do this by treating the # in "/#" as a query string instead of a file. This can be done through your web server. You could store that Search_ID in the database with the associated results.