0

我用 bootstrap_package 设置了一个typo3;使用扩展构建器创建我自己的扩展并使用自动配置安装 realURL 并希望它能够工作。它没。我试图编写自己的 conf,但它被忽略了,但是页面设置正在某个地方进行。

自动生成的文件已经有一个 no_cache 设置,但它没有被解释,我自己的设置也没有使用,但页面设置是。有任何想法吗?

我的网址目前看起来像这样:

http://localhost/test/sub/
?tx_test_shop[product]=1
&tx_test_shop[action]=show
&tx_test_shop[controller]=Product
&cHash=49495417a4d9eb25776b945d2123bbdf

我的设置: https ://i.stack.imgur.com/HZbKC.jpg

完整文件:

$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(
'http://localhost/' => array(
        'init'        =>
            array(
                'appendMissingSlash'  => 'ifNotFile,redirect',
                'emptyUrlReturnValue' => '/',
            ),
        'pagePath'    =>
            array(
                'rootpage_id' => '2',
            ),
        'fileName'    =>
            array(
                'defaultToHTMLsuffixOnPrev' => 0,
                'acceptHTMLsuffix'          => 1,
                'index'                     =>
                    array(
                        'print' =>
                            array(
                                'keyValues' =>
                                    array(
                                        'type' => 98,
                                    ),
                            ),
                    ),
            ),
        'preVars'     =>
            array(
                0 =>
                    array(
                        'GETvar'   => 'no_cache',
                        'valueMap' =>
                            array(
                                'nc' => '1',
                            ),
                        'noMatch'  => 'bypass',
                    ),
                1 =>
                    array(
                        'GETvar'   => 'L',
                        'valueMap' =>
                            array(
                                'de' => '1',
                            ),
                        'noMatch'  => 'bypass',
                    ),
            ),
        'postVarSets' => array(
            '_DEFAULT' => array(
                'p' => array(
                    array(
                        'GETvar' => 'tx_test_shop[product]',
                    ),
                    array(
                        'GETvar'   => 'tx_test_shop[controller]',
                        'valueMap' => array(
                            'Product' => 66,
                        ),

                    ),
                    array(
                        'GETvar'   => 'tx_test_shop[action]',
                        'valueMap' => array(
                            'list' => 'list',
                            'show' => 'show',
                        ),
                    ),
                ),
                'page'    => array(
                    0 =>
                        array(
                            'GETvar' => 'page',
                        ),
                ),
            ),
        ),
    ),);
4

1 回答 1

0

我有一个类似的问题:TYPO3 - realurl is ignoring created/own extension

我所做的是:

  • 我停用并删除了扩展程序。
  • 删除了typo3temp 和所有realurl 表。
  • 在 InstallTool 中清除缓存
  • 再次安装扩展。

-> 现在一切都按预期工作

*请在删除之前复制记录和表格以防万一。

这可能是由于安装顺序:

“安装扩展的顺序很重要!确保首先安装 RealURL 扩展,然后是引导程序包,然后是包含 RealURL 规则的其余扩展,包括您的新规则。” (来源:https ://aimeos.org/tips/tag/realurl/ )

于 2017-02-19T14:55:51.030 回答