使用Apache进行重定向
这是将 http://mrubysearch.ongaeshi.me/ 搬迁到 http://mruby-code-search.ongaeshi.me/ 的一个示例。
当访问mrubysearch.ongaeshi.me时,会将我重定向到mruby-code-search.ongaeshi.me。
修改之前
<VirtualHost *:80>
ServerName mrubysearch.ongaeshi.me
DocumentRoot /path/to/mrubyseach/public
</VirtualHost>
修改后
<VirtualHost *:80>
ServerName mruby-code-search.ongaeshi.me
DocumentRoot /path/to/mruby-code-seach/public
</VirtualHost>
<VirtualHost *:80>
ServerName mrubysearch.ongaeshi.me
Redirect / http://mruby-code-search.ongaeshi.me
</VirtualHost>
只需要设置Redirect属性即可。