在社交引擎中重写 url

发布于 2024-12-03 00:48:16 字数 100 浏览 4 评论 0原文

我正在使用社交引擎,我想将我的网址从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晨敛清荷 2024-12-10 00:48:16

将此代码放入您的 public/index.php 文件中。

$FrontController = Zend_Controller_Front::getInstance();
$Router = $FrontController->getRouter();
$Router->addRoute("activate",
new Zend_Controller_Router_Route
(
"/activate",
array
("controller" => "signup",
"action" => "index"
)
));

这里:activate 是路由器的名称。 /activate 是您想要的 url,因为地址、控制器和操作是自我描述的。

Put this code in your public/index.php file.

$FrontController = Zend_Controller_Front::getInstance();
$Router = $FrontController->getRouter();
$Router->addRoute("activate",
new Zend_Controller_Router_Route
(
"/activate",
array
("controller" => "signup",
"action" => "index"
)
));

here: activate is the name of the router. /activate is the url you want as address, controller and action is self descriptive.

猫瑾少女 2024-12-10 00:48:16

在 application/modules/Use/settings/manifest 中找到以下行:

    'user_signup' => array(
        'route' => '/signup/:action/*',
        'defaults' => array(
        'module' => 'user',
        'controller' => 'signup',
        'action' => 'index'
     )

/signup/:action/ 更改为 /activate/:action

In application/modules/Use/settings/manifest find these lines:

    'user_signup' => array(
        'route' => '/signup/:action/*',
        'defaults' => array(
        'module' => 'user',
        'controller' => 'signup',
        'action' => 'index'
     )

Change /signup/:action/ to /activate/:action.

情痴 2024-12-10 00:48:16

您可以修改 .htaccess 以创建重定向,请参阅此示例

You could modify your .htaccess to create redirects, refer to this example

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文