2 ways:
2. Create a .htaccess file in the sub domain's root folder with the following contents:
1 is the recommended way, but I am not sure if it will work with the other directives in the vhost for the sub domain.
2 may be your best bet.
- Use a custom vhost entry for the sub domain
- Use a .htaccess file in the sub domain's root folder
Code:
# REDIRECT SUB.DOMAIN to DOMAIN/SUB FOLDER
Redirect / http://domain.tld/sponsors
2. Create a .htaccess file in the sub domain's root folder with the following contents:
Code:
Redirect / http://domain.tld/sponsors
2 may be your best bet.