红联Linux门户
Linux帮助

Linux中域名的rewrite(重写 重定向)

发布时间:2016-10-27 09:24:14来源:linux网站作者:shuilaizhujiu
实现目标:让www.sina.com -> www.sohu.com
 
修改配置文件
在URL中输入一个地址,会自动跳转为另一个
修改主配置文件
#vim /usr/local/apache2/etc/httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so的注释去掉
Linux中域名的rewrite(重写 重定向)
 
修改子配置文件
#vim /usr/local/apache2/etc/extra/httpd-vhosts.conf
为sina的权限管理文件 加上
Options Indexes FollowSymLinks 这个功能
FollowSymLinks就是一个软连接 连接到另一个目录
Linux中域名的rewrite(重写 重定向)
 
建立 /share/sina/.htaccess
#vim /share/sina/.htaccess
1 RewriteEngine on
2 RewriteCond %{HTTP_HOST} www.sina.com
3 RewriteRule .* http://www.sohu.com
Linux中域名的rewrite(重写 重定向)
 
重启服务 测试
www.sina.com -> www.sohu.com
访问sina的时候会跳转到sohu
Linux中域名的rewrite(重写 重定向)
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25423.html