Hello,
I'm using a script which have a crypted index.php file in the domain root and which "include" to the script template /script/tube/index.php
There are already a htaccess created with some mod_rewrite like:
RewriteRule ^models/$ /script/tube/?force_template=model_list [L]
...
I would like /script/tube/?group_id=2 to be the main page ( ie domain.com )
I tried:
RewriteRule ^$ /script/tube/?group_id=2 [L]
But it doesn't work.
Thanks for your help.