1. 程式人生 > >個性化域名重定向到博客園–Apache

個性化域名重定向到博客園–Apache

自己的 aws tar opp 頁面 鏈接 direction art .cn

開通了博客園頁面,深深的被其簡潔幹凈所吸引,頓時想將自己的個人域名重定向到博客園頁面。

本來自己有一臺 AWS EC2 主機,使用Apache 修改下配置即可。

1. 生成新配置文件 redirect_subdomains.conf

# Enable Virtual Host
NameVirtualHost *:80

# Setup redirection
<VirtualHost *:80>
    ServerName blog.zhengyongfeng.cn
    Redirect permanent / http://www.cnblogs.com/yongfeng01/
ErrorLog logs/blog.zhengyongfeng.cn-error_log CustomLog logs/blog.zhengyongfeng.cn-access_log common </VirtualHost>

2. 將編輯好的新文件放在 /etc/httpd/conf.d 即可,然後重啟 apache

service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]

3. 訪問新鏈接 http://blog.zhengyongfeng.cn 即可重定向到 http://www.cnblogs.com/yongfeng01/

個性化域名重定向到博客園–Apache