Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在添加自定义 url 规则时遇到了很多困难(无论如何我都应该这样做)。我的情况如下:
我的网站托管在domain.com 我想重定向games.domain.com/ID到domain.com/games/index/id.
domain.com
games.domain.com/ID
domain.com/games/index/id
此时games.domain.com指向domain.com 我想要以重定向开头的任何内容。在要指向的 url 中domain.com/games/index/id/IDHERE
games.domain.com
domain.com/games/index/id/IDHERE
任何提示/建议/帮助?
试试这个规则:
'http://games.domain.com/<id:.+>' => 'games/index/id/<id>',