To match only the homepage in an .htaccess rule, match %{REQUEST_URI} to ^/$
The following will rewrite to a new page only for the homepage.
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^$ v2/pages/home/index.php
Yuji's Increasingly Infrequent Ramblings
To match only the homepage in an .htaccess rule, match %{REQUEST_URI} to ^/$
The following will rewrite to a new page only for the homepage.
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^$ v2/pages/home/index.php