Redirect to a specific page using mod_rewrite
Here’s a quick and easy way to redirect a domain name to a specific page using mod_rewrite.
<Directory /path/to/document/root>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ [NC]
RewriteRule ^.*$ http://domain.com/page.html [R=301,L]
</Directory>This uses a 301 Permanent Redirect to the redirected page.
Done!!
Post a Comment
You must be logged in to post a comment.