在社交引擎中重写 url
我正在使用社交引擎,我想将我的网址从 www.example.com/signup 更改为 www.example.com/activate,抱歉,我想保留这两个网址。请让我知道该怎么做
I am using social engine, I want to change my url from www.example.com/signup to www.example.com/activate, sorry I want to keep both urls. please let me know how to do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将此代码放入您的 public/index.php 文件中。
这里:activate 是路由器的名称。 /activate 是您想要的 url,因为地址、控制器和操作是自我描述的。
Put this code in your public/index.php file.
here: activate is the name of the router. /activate is the url you want as address, controller and action is self descriptive.
在 application/modules/Use/settings/manifest 中找到以下行:
将
/signup/:action/
更改为/activate/:action
。In application/modules/Use/settings/manifest find these lines:
Change
/signup/:action/
to/activate/:action
.您可以修改 .htaccess 以创建重定向,请参阅此示例
You could modify your .htaccess to create redirects, refer to this example