For example: There is a page http://site.ru/product/

How to make this page the main default in 1C-Bitrix (to load like this: http://site.ru/ )?

  • 2
    This is not a question of Bitrix, this is a question of redirect. This is in the file urlrewrite.php or .htaccess - maxkuku

1 answer 1

Option 1 is simply the contents of the file /product/index.php transferred to /index.php

Option 2 - htaccess in htaccess

 Options +FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_URI} ^/$ RewriteRule ^$ /products/1 [QSA,L]