|
RE: Domain Directing
Dear 1webguru,
For redirecting a domain to a subfolder the normal procedure is editing the .htaccess file.
Add the following to the .htaccess file:
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.domain.*
RewriteCond %{REQUEST_URI} !/subdir/
RewriteRule ^(.*)$ /subdir/$1
RewriteCond %{HTTP_HOST} ^domain.*
RewriteCond %{REQUEST_URI} !/subdir/
RewriteRule ^(.*)$ /subdir/$1
Replace www.domain.* (4th line) and domain.* (7th line) with the actual domain name of the pointer (minus the \'www.\' in the second instance). Do not put .com or .co.uk on it; keep the asterisk. Also replace the four instances of \"subdir\" with the subdirectory on YOUR site that domain pointer will map to.
This will redirect requests for the domain pointer (both domain.com and www.domain.com) to the directory specified.
You can edit the .htaccess file at cpanel-> filemanager option in cpanel.
Regards,
|