1

我打开了“将代码存储到 URL”选项(管理员 -> 系统 -> 配置 -> 网络 -> url 选项)。

问题是,如果我在没有商店代码的情况下访问我的主页,它就可以工作。我的意思是这两个例子都有效: http: //example.com/ http://example.com/code/ 但是第一个 url(没有商店代码)应该重定向到带有商店代码的 url。我试图将重写规则放入 htaccess 但没有成功,我尝试了各种可能性。

Magento 内置重写规则似乎没有帮助 - 我尝试将“/”重写为“code”,但结果是“/code/code”url 后缀。

4

1 回答 1

4

这种行为的原因可以在 中找到Mage_Core_Model_Url_Rewrite::rewrite。没有商店代码的基本 URL 没有重定向。

下面是一个非常丑陋的解决方案,但它应该适用于您的情况。只要在请求 URI 中找不到当前商店代码,它将重定向到包含商店代码的基本 URL:

应用程序/代码/本地/Danslo/RedirectToStore/Model/Observer.php:

<?php

class Danslo_RedirectToStore_Model_Observer
{

    public function redirectToStore($observer)
    {
        $request    = $observer->getFront()->getRequest();
        $storeCode  = Mage::app()->getStore()->getCode();
        $requestUri = $request->getRequestUri();

        if (strpos($requestUri, $storeCode) === false) {
            $targetUrl = $request->getBaseUrl() . '/' . $storeCode;
            header('HTTP/1.1 301 Moved Permanently');
            header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
            header('Pragma: no-cache');
            header('Location: ' . $targetUrl);
            exit;
        }
    }

}

应用程序/代码/本地/Danslo/RedirectToStore/etc/config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <global>
        <events>
            <controller_front_init_before>
                <observers>
                    <redirect_to_store>
                        <class>Danslo_RedirectToStore_Model_Observer</class>
                        <method>redirectToStore</method>
                        <type>singleton</type>
                    </redirect_to_store>
                </observers>
            </controller_front_init_before>
        </events>
    </global>
</config>

应用程序/etc/modules/Danslo_RedirectToStore.xml:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Danslo_RedirectToStore>
            <active>true</active>
            <codePool>local</codePool>
        </Danslo_RedirectToStore>
    </modules>
</config>
于 2012-05-07T11:45:17.157 回答