个性化域名重定向到博客园–Apache

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了个性化域名重定向到博客园–Apache相关的知识,希望对你有一定的参考价值。

开通了博客园页面,深深的被其简洁干净所吸引,顿时想将自己的个人域名重定向到博客园页面。

本来自己有一台 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的主要内容,如果未能解决你的问题,请参考以下文章

apache将不带www域名301重定向到带www的域名的配置方法

apache 域名重定向

apache如何同时重定向https与www

apache实现301永久性重定向代码

apache如何实现该种跳转或重定向?

伪静态网址301重定向到静态网址怎么实现