为什么TYPO3 Realurl工作但找不到页面

时间:2017-04-16 12:30:53

标签: .htaccess apache2 typo3 realurl

我们在TYPO3 8.7 LTS中安装了realurl 2.2.0。默认的TYPO3 .htaccess文件被复制到索引文件夹,我们使用以下设置(域名替换):

虚拟主机:

    {if $next_bid_amount > $bid}
            <br />
            <p>
                <div class="alert alert-danger">
                    The lowest possible next bid is {$meta.currency_sign}{$next_bid_amount|number_format}. Please bid this amount or higher.
                </div>
            </p>
            <br />
            {/if}

的TypoScript:

<VirtualHost *:80>
    ServerName    example.com
    DocumentRoot  /var/www/examplecom/htdocs
    <Directory /var/www/examplecom/htdocs/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

Realurl设置为自动。 服务器使用php 7.0和Apache 2运行。

生成的HMENU中的链接正常工作。但是当我点击其中一个导航元素时,会出现404页面未找到的消息。这是为什么?怎么解决?

1 个答案:

答案 0 :(得分:2)

解决方案是启用apache模块重写:

a2enmod rewrite