0
我們在TYPO3 8.7 LTS安裝realurl 2.2.0。默認TYPO3 .htaccess文件被複制到索引文件夾,我們使用以下設置(區取代):爲什麼TYPO3 Realurl工作,但找不到網頁
虛擬主機:
<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>
Typo腳本:
config.tx_realurl_enable = 1
config.simulateStaticDocuments = 0
config.baseURL = http://example.com/
Realurl被設置爲自動。 服務器使用PHP 7.0和運行Apache 2
在生成的HMENU的鏈接正常工作。但是當我點擊其中一個導航元素時,404頁面找不到消息。這是爲什麼?怎麼修?
是Apache模塊mod_rewrite的活躍? –