I would like to redirect all the traffic from subdomain.domain.com to subdomain.domain.com/?appselect=app1.
I followed some of the examples here: Rewrite query string in .htaccess But they are not working for me for some reason. This is what I have so far:
RewriteEngine On
RewriteRule ^/$ /?appselect=app1 [PT,L]
But it just goes to the same page: subdomain.domain.com
Any help on this would be appreciated, thanks.