代码点火器路线
我有以下网址:
http://localhost.com/phpdemo/sbid/account/sign2?oauth_token=A2nuio32nn123oiiooiETUI8RT&oauth_verifier=AA22EE44RRR55SDFSdsf23423
Base Url : http://localhost.com/phpdemo/sbid/
如何编写一条路线,将上述网址重定向/重新路由到以下网址:
http://localhost.com/phpdemo/sbid/user/login
提前致谢
I have following url:
http://localhost.com/phpdemo/sbid/account/sign2?oauth_token=A2nuio32nn123oiiooiETUI8RT&oauth_verifier=AA22EE44RRR55SDFSdsf23423
Base Url : http://localhost.com/phpdemo/sbid/
How can I write a route that above mentioned url should be redirected/rerouted to following url :
http://localhost.com/phpdemo/sbid/user/login
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
Try this
将以下句子添加到您的routes.php中:
因此,您的登录函数将如下所示:
您需要解析此字符串以获取参数及其值。
Add to your routes.php the following sentences:
So, your login function is going to look like this:
You need to parse this string to take params and its values.