Linux环境下apache服务器配置301跳转
Posted hiiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux环境下apache服务器配置301跳转相关的知识,希望对你有一定的参考价值。
Linux环境下apache服务器配置301跳转
基于ubuntu 16.04系统,使用 apache 进行布署,云服务器为阿里云
配置步骤
- 修改 apache 端口文件
找到/etc/apache2/sites-available路径下的000-default.conf,写入以下代码
#不带www的域名转向到带www的域名
<VirtualHost *:80>
ServerName www.xsyl0.com
DocumentRoot /var/www/html
</VirtualHost>
<VirtualHost *:80>
ServerName xsyl0.com
RedirectMatch permanent ^/(.*) http://www.xsyl0.com/$1
</VirtualHost>
- 重启 apache 服务器
/etc/init.d/apache2 restart #重启
因为小编最近在为自己网站配置301跳转,弄了将近半个小时才完成,查找其他博主的文章并不能有效的解决,所以在自己的网站配置成功之后写了这篇博客。
以上是关于Linux环境下apache服务器配置301跳转的主要内容,如果未能解决你的问题,请参考以下文章
springboot 如何配置http跳转https(301)?