We transfer the site from Magento to Bitrix. The task is the following: set up a redirect from the old URL of the site to the new ones. It would seem, like, - nonsense, but in urlah with Magento goes site_name/index.php/cat_name.html . I urlrewrite.php to register in urlrewrite.php this way:
array( "CONDITION" => "#^/index.php/([0-9A-Za-z\\_\\-]+)\\.html#", "RULE" => "OLD_URL=Y&NAME=$1", "ID" => "", "PATH" => "/" ) As a result, all this trouble is ignored and the main page simply opens. Parameters are not transmitted. Can it be treated somehow, except by renaming the main index.php file?
"PATH" => "/"- which page should open? Do you have aindex.phphandling inindex.php? Have you tried"PATH" => "/index.php"? - u_mulder