Redirect/Subdomain with .htaccess
- by fractalbit
What i have currently:
A wildcard dns record. So that every subdomain points to www.galop.gr
A dynamically (php) generated .htacces file where i append the following code for every subdomain i want working:
RewriteCond %{HTTP_HOST} ^fractalbit.galop.gr$ [OR]
RewriteCond %{HTTP_HOST} ^www.fractalbit.galop.gr$
RewriteRule ^/?$ http://www.galop.gr/index.php?user=1 [R=301]
Everything is working fine, i just want something more if it is possible.
Right now, if someone enters fractalbit.galop.gr will be redirected to http://www.galop.gr/index.php?user=1
Is it possible to do this BUT keep fractalbit.galop.gr to the address bar of the browser?
Thanks for any replies.