在实际生产环境中Apache服务器上web站点往往因为需要维护或者是弃用旧的域名时需要使用域名重定向,那么就可以利用Apache服务的rewrite规则快速的修改虚拟主机实现301重定向,如果还不了解http的状态码的可以看:
<VirtualHost *:80>
DocumentRoot "/data/www/www.linuxidc.com"
ServerName #实际的域名
<Directory /data/www/www.linuxidc.com>
AllowOverride all
RewriteEngine on
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName #需要跳转的域名
RedirectMatch permanent ^/(.*) $1#跳转
</VirtualHost>
重启Apache后,使用curl -I 验证下,返回的http状态值是301就是成功。
下面关于LAMP相关的内容你可能也喜欢:
LAMP平台安装Xcache和Memcached加速网站运行
CentOS 7下搭建LAMP平台环境
CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境
Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)开发环境