Apache中301重定向的配置代码
程序员文章站
2022-06-06 11:21:37
新建.htaccess文件,输入下列内容(需要开启mod_rewrite): 1)将不带www的域名转向到带www的域名下 复制代码 代码如下: options +foll...
新建.htaccess文件,输入下列内容(需要开启mod_rewrite):
1)将不带www的域名转向到带www的域名下
options +followsymlinks
rewriteengine on
rewritecond %{http_host} ^jb51.net [nc]
rewriterule ^(.*)$ //www.jb51.net/$1 [l,r=301]
2)重定向到新域名
options +followsymlinks
rewriteengine on
rewriterule ^(.*)$ http://www.baidu.com/$1 [l,r=301]
3)使用正则进行301重定向,实现伪静态
options +followsymlinks
rewriteengine on
rewriterule ^news-(.+)\.html$ news.php?id=$1
将news.php?id=123这样的地址转向到news-123.html
apache下vhosts.conf中配置301重定向
为实现url规范化,seo通常将不带www的域名转向到带www域名,vhosts.conf中配置为:
<virtualhost *:80>
servername www.baidu.com
documentroot /home/fari001com
</virtualhost>
<virtualhost *:80>
servername faribaidu.com
redirectmatch permanent ^/(.*) http://www.baidu.com/$1
</virtualhost>
apache下除了以上2种方法,还有其他配置方法和可选参数,建议阅读apache文档。
1)将不带www的域名转向到带www的域名下
复制代码 代码如下:
options +followsymlinks
rewriteengine on
rewritecond %{http_host} ^jb51.net [nc]
rewriterule ^(.*)$ //www.jb51.net/$1 [l,r=301]
2)重定向到新域名
复制代码 代码如下:
options +followsymlinks
rewriteengine on
rewriterule ^(.*)$ http://www.baidu.com/$1 [l,r=301]
3)使用正则进行301重定向,实现伪静态
复制代码 代码如下:
options +followsymlinks
rewriteengine on
rewriterule ^news-(.+)\.html$ news.php?id=$1
将news.php?id=123这样的地址转向到news-123.html
apache下vhosts.conf中配置301重定向
为实现url规范化,seo通常将不带www的域名转向到带www域名,vhosts.conf中配置为:
复制代码 代码如下:
<virtualhost *:80>
servername www.baidu.com
documentroot /home/fari001com
</virtualhost>
<virtualhost *:80>
servername faribaidu.com
redirectmatch permanent ^/(.*) http://www.baidu.com/$1
</virtualhost>
apache下除了以上2种方法,还有其他配置方法和可选参数,建议阅读apache文档。
上一篇: CentOS下Lighttpd Web服务器安装与配置方法
下一篇: 如此能睡的人