我使用bootstrap_package设置了一个typo3;使用扩展构建器创建了我自己的扩展,并使用auto conf安装了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',
),
),
),
),
),);
答案 0 :(得分:0)
我遇到了类似的问题:TYPO3 - realurl is ignoring created/own extension
我做的是:
- >现在一切都按预期工作
*请在删除之前复制记录和表格,以防万一。
可能是由于安装顺序:
"您安装扩展程序的顺序很重要!确保首先安装RealURL扩展,然后安装bootstrap包,然后安装包含RealURL规则的其余扩展,包括新的扩展。" (来源:https://aimeos.org/tips/tag/realurl/)