gpt4 book ai didi

php - 链接到另一个 Action

转载 作者:行者123 更新时间:2023-12-02 05:32:01 24 4
gpt4 key购买 nike

我正在使用 zend 框架。我有一个链接到 Controller 、主页的 View ,

所以:

application>controllers>HomeController.php

application>views>scripts>home>index.phtml

在 index.phtml 页面中,我有一个指向同一 Controller 中的操作的链接:

application>views>scripts>home>add.phtml

链接的代码是:

<a href="../application/controllers/home/add">add</a>

这不仅行不通,而且我确信这不是在 zend 框架中执行此操作的最佳方式。

请注意我使用的是wamp

http://localhost/sites/url/public/home/add

使用时:

<?php
echo '<a href="' . $this->url(array('controller' => 'home', 'action' => 'add')) . '">Add Job</a>';
?>

我收到此错误消息:

Message: Invalid controller specified (sites)

这是我的 htaccess 中的内容

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

最佳答案

为此使用 url 帮助器:

http://framework.zend.com/manual/en/zend.view.helpers.html

<a href="<?php echo $this->url(array('controller' => 'index', 
'action' => 'index',
'module' => 'module1')); ?>" title="test">

更新

这就是您的 .htaccess 应该如何:

SetEnv ENVIRONMENT development

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteCond %{REQUEST_URI} !\.(css|gif|ico|jpg|js|png|swf|txt)$
RewriteRule ^.*$ index.php [NC,L]

关于php - 链接到另一个 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12231956/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com