1

我的模块 config.xml

<frontend>
       <routers>
            <news>
                <use>standard</use>
                <args>
                    <module>Test_News</module>
                    <frontName>news</frontName>
                </args>
            </news>
        </routers>
</frontend>

<global>
        <rewrite>
            <news_url>
                <from><![CDATA[/news\/(.*)/]]>
                </from>
                <to><![CDATA[news/index/view/url/$1/]]>
                </to>
                <complete>1</complete>
            </news_url>
        </rewrite>
</global>
<admin>
        <routers>
            <news>
                <use>admin</use>
                <args>
                    <module>Test_News</module>
                    <frontName>news</frontName>
                </args>
            </news>
        </routers>
</admin>  

如上所示,我也在使用重写 url。它在前端正常工作,但在管理端,如果我在 url 中输入新闻,它会重定向到前端。如何解决这个问题。我还尝试了不同的管理端名称。它显示带有值列表的索引控制器,但无法从管理员端添加新消息或编辑新闻。

4

1 回答 1

1

你可以试试

更改管理员的名称

<admin>
        <routers>
            <news>
                <use>admin</use>
                <args>
                    <module>Test_News</module>
                    <frontName>news_admin</frontName>
                </args>
            </news>
        </routers>
</admin> 

或者

在="Mage_Adminhtml" 之后使用

<admin>
    <routers>
        <adminhtml>
            <use>admin</use>
            <args>
                <modules>
                    <Test_News after="Mage_Adminhtml">Test_News_Adminhtml</Test_News>
                </modules>
            </args>
        </adminhtml>    
    </routers>
</admin>
于 2013-09-16T13:43:55.943 回答