dongren4147 2015-10-15 11:55
浏览 59

首次点击,原始页面即将到来。 但是,在第二次单击时,“找不到页面”错误即将到来。 - Yii2-App-Basic

I got one awkward issue.

My views/layout/main.php is:

echo Nav::widget([
        'options' => ['class' => 'navbar-nav navbar-right'],
        'items' => [
                Yii::$app->user->isGuest ?
                ['label' => 'Register', 'url' =>['users/users/register']]:
                ['label' => 'D',''=>''],

                ['label' => 'Home', 'url' => ['users/users/index']],
                ['label' => 'About', 'url' => ['users/users/about']],
        ],
    ]);
    NavBar::end();
    ?>

Whenever I'm clicking On Home Tab, Page is opening. Its Ok.

http://localhost/mylawsuit/yii/web/index.php?r=users/users/index

enter image description here

Again Clicking on Home Tab, Page giving error Like

Page Not Found.

http://localhost/mylawsuit/yii/web/index.php?r=users/users/users/index

enter image description here

In Url, one more "users" getting appendend in middle. That's why Page Not Found Coming. Users is one module.

Again, clicking On Home Tab, Page is coming without error. Means Original Page Coming.

For me, i've to click 2 times each on every tab to get original page. First time, error. Second Time, Original Page.

But, I solved it by changing 'url' => ['users/users/index']] of main.php to 'url' => ['/users/users/index']], means adding one forward slash to URL. It's working fine.

What may be the issue. Or Writing like this 'url' => ['/users/users/index']] is the main syntax. Forgive me, If this is the syntax to write the URL.

  • 写回答

1条回答 默认 最新

  • dongshi4589 2016-02-08 19:17
    关注

    You just need to use absolute url with / on begining like:

    'url' => ['/users/users/index']
    

    without / Yii creates a relative url which is relative to current page, absolute url is always the same on every page.

    评论

报告相同问题?

悬赏问题

  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?