i replaced an old Joomla! Site with a new one and want to redirect selected old URLs to their appropriate new ones. The old Joomla! Site uses URLs like example.com/index.php/news
or example.com/index.php/about
and the new Site uses URLs like example.com/latest-news.html
or example.com/about-us.html
. Simple redirects using RedirectPermanent
in .htaccess does not work (probably because the part after the slash is a query string, no URL segment). I searched the web but didn't found an answer.
Any suggestions?
Thanks in advance.