Help me out bros. This is the situation;
- Registered first-domain.com from a domain registrar
- bought hosting from another provider
Now I want to point my old domain (no hosting there, they offer only dns server change) second-domain.com to first-domain.com
How do I do it? I've looked into htaccess but there are some things there I'm not familiar with...so I'm not sure what to edit.
thanks
- Registered first-domain.com from a domain registrar
- bought hosting from another provider
Now I want to point my old domain (no hosting there, they offer only dns server change) second-domain.com to first-domain.com
How do I do it? I've looked into htaccess but there are some things there I'm not familiar with...so I'm not sure what to edit.
Code:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName first-domain.com
AuthUserFile /home/firstdom/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/firstdom/public_html/_vti_pvt/service.grp
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
thanks