Add the following to .htaccess:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} domain2.com [OR]
RewriteCond %{HTTP_HOST} www.domain2.com
RewriteRule ^(.*)$ http://www.domain1.com/$1 [L,R=301]
(Change domain1 and domain2 to your domains.)
- 0 Uživatelům pomohlo
Související články
How do I turn Directory Indexing off?
Add the following to .htaccess:Options -IndexesTurn it back on:Options +Indexes
How can I setup dynamic/custom error pages?
If you have defined your own custom Error Pages using the "Define Error Pages" tool within the...
How do I do a rewrite instead of a 302 for missing pages?
Use something like this:RewriteEngine onRewriteCond %{REQUEST_FILENAME} !index.htmlRewriteRule /*...
How do I stop off-line browsers/ robot surfers?
Try the following in .htaccess:RewriteEngine OnRewriteCond %{HTTP_USER_AGENT} ^MozillaRewriteRule...
How do I prevent spam from email harvestering?
Use the following in .htaccess:RewriteEngine onRewriteCond %{HTTP_USER_AGENT} ^Bullseye.*...