Redirect a domain name to a specific page using mod_rewrite

下面用一个快速简便的方法使用mod_rewrite模块来重定向一个域名到一个特定的页面。

<Directory /path/to/websites/itkylin>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?itkylin\.com$ [NC]
RewriteRule ^.*$ https://www.itkylin.com/page.html [R=301,L]
</Directory>

这将使用301永久重定向一个域名到指定的页面,也算是301重定向的一个例子。