Reputation: 171
I would like to have frendly URLs in news single post instead of all those hashtags, procent, question marks etc.
I have tried to follow this article but it doesn't work.
Normal pages have friendly URLs.
I am using Typo3 7.2.0 and News System 3.2.0
Any ideas? Thanks
RESOLVED
This worked TYPO3 news system and RealURL
Upvotes: 0
Views: 151
Reputation: 55798
Of course that sample doesn't work as it's written for tt_news
ext. You should use sample from official News' doc instead.
Note that you can skip controller and action parts of URL by adding this to your TS:
plugin.tx_news.settings.link.skipControllerAndAction = 1
In such case you will also need to remove/comment these parts from your realurl_conf:
array(
'GETvar' => 'tx_news_pi1[action]',
),
array(
'GETvar' => 'tx_news_pi1[controller]',
),
Upvotes: 1