dear member i have a question let see ex i have a domain xxxx.com and i create a subdomain aaa.xxxx.com i want to know how can i redirect this new subdomain "aaa.xxxx.com" to google ex but in url address in browser still aaa.xxxx.com so there is any html or php code ? thnx in advance
Their are a couple different ways to do this. One way is using .htaccess redirect which is the simpilest a good tutorial can be found here. javascriptkit.com/howto/htaccess7.shtml and then their is the classic html way found here. instant-web-site-tools.com/html-redirect.html I hope this helps, also renember their is always Google
Yes .htaccess is the cleanest way to do it. Or if you are using cpanel for your hosting you could also set up subdomain redirection. Finally you could also do it using php with a header redirect: <?php header( 'Location: http://www.yoursite.com/' ) ; ?>