3

我的任务是强制我们所有的 404 页面返回 301 的 http 状态。我一直在网上搜索/阅读,但找不到任何有关如何完成此操作的信息。

有没有办法改变 layout.xml 或模板文件中的 http 状态?如果没有,我应该看什么控制器?

4

4 回答 4

5

我没有仔细研究它,但 404 消息似乎是在这个文件中发送的 - 在 3 个函数中:

服务器路径:/app/code/core/Mage/Cms/controllers

我将标头从 404 更改为 301 重定向。可能不是最漂亮的解决方案,但它似乎有效。

**/**
 * Default index action (with 404 Not Found headers)
 * Used if default page don't configure or available
 *
 */
public function defaultIndexAction()
{
    $this->getResponse()->setHeader('HTTP/1.1, 301 Moved Permanently');
    $this->getResponse()->setHeader('Location','http://www.streetcred.dk');
}
/**
 * Render CMS 404 Not found page
 *
 * @param string $coreRoute
 */
public function noRouteAction($coreRoute = null)
{
    $this->getResponse()->setHeader('HTTP/1.1, 301 Moved Permanently');
    $this->getResponse()->setHeader('Location','http://www.streetcred.dk');
}
/**
 * Default no route page action
 * Used if no route page don't configure or available
 *
 */
public function defaultNoRouteAction()
{
    $this->getResponse()->setHeader('HTTP/1.1, 301 Moved Permanently');
    $this->getResponse()->setHeader('Location','http://www.streetcred.dk');
}**
于 2012-11-13T19:29:38.197 回答
3

根据上面提到的文章,CMS 无路由页面(或 defaultNoRoute 操作)都使用以下代码从控制器操作设置其 404 标头

$this->getResponse()->setHeader('HTTP/1.1','404 Not Found');

如果你看一下方法定义setHeader

#File: lib/Zend/Controller/Response/Abstract.php
public function setHeader($name, $value, $replace = false)
{
    $this->canSendHeaders(true);
    $name  = $this->_normalizeHeader($name);
    $value = (string) $value;

    if ($replace) {
        foreach ($this->_headers as $key => $header) {
            if ($name == $header['name']) {
                unset($this->_headers[$key]);
            }
        }
    }

    $this->_headers[] = array(
        'name'    => $name,
        'value'   => $value,
        'replace' => $replace
    );

    return $this;
}

您可以看到有第三个参数名为$replace,您可以使用它再次设置标题值,所以像这样

Mage::app()->getResponse()->setHeader('HTTP/1.1','...header text...',true);

应该足以更改标头的值。只需在前端控制器告诉响应对象发送其输出之前调用它。您可能可以从 phtml 模板执行此操作(因为在发送之前呈现输出),但更好的方法是使用两个 CMS 无路由操作的事件侦听器(如果您为无路由设置了自定义操作,相应调整)

controller_action_postdispatch_cms_index_noRoute
controller_action_postdispatch_cms_index_defaultNoRoute
于 2012-05-30T17:36:30.157 回答
2

Magento 中有许多 404 页,Alan Storm 的这篇文章应该可以帮助您找到所需的内容:

http://alanstorm.com/magentos_many_404_pages

于 2012-05-30T13:54:08.833 回答
1

我最终通过 3 个步骤完成了此操作:

首先,我创建了一个新的 cms 页面(404/登陆)并从我的 404 页面复制了所有 cms 设置。这是我将用户重定向到的页面。

然后我创建了一个新模块(您可以使用 Alan Storm 的这篇很棒的指南http://www.magentocommerce.com/knowledge-base/entry/magento-for-dev-part-3-magento-controller-dispatch)并使用以下动作:

public function indexAction() {
    $url = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB)."404/landing"; //build url
    $this->getResponse()->setRedirect($url, $code = 301); //set a redirect using Zend response object
}

一旦我的模块和登录页面正常工作,我简单地将默认无路由 URL(系统 -> 配置 -> Web -> 默认页面)更改为我的新模块。

于 2012-05-30T18:07:27.973 回答