.htaccess 301重定向详细教程
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-23 23:42:52 浏览: 评论:0
.htaccess这个模块是apache的一个算是叫扩展示模板吧,要能让它可以运行必须在RewriteEngine:让下面的rewrite功能打开或关闭。on是打开;off是关闭,可以的。
重定向老域名.com到www.新域名.com
- RewriteEngine On
- RewriteCond %{HTTP_HOST} !老域名.com$ [NC]
- RewriteRule ^(.*)$ http://www.新域名.com/$1 [L,R=301]
重定向老域名.com to 新域名.com
- RewriteEngine On
- RewriteBase /
- RewriteCond %{HTTP_HOST} !老域名.com$ [NC]
- RewriteRule ^(.*)$ http://新域名.com/$1 [L,R=301]
重定向domain.com/file/file.php 到 otherdomain.com/otherfile/other.php
- RewriteCond %{HTTP_HOST} ^www.domain.com$
- RewriteRule ^file/file.php$ http://www.otherdomain.com/otherfile/other.php [R=301,L]
- RewriteBase /news
- RewriteCond %{HTTP_HOST} ^phpfensi.com [NC]
- RewriteRule com(.*)$ http://www.phpfensi.com$1 [L,R=301]
#不加斜杠请求的地址是/wwwroot/phpfensi.com/news/
- RewriteCond %{HTTP_HOST} ^phpfensi.com [NC]
- RewriteRule (.*)$ http://www.phpfensi.com/news/$1 [L,R=301]
- RewriteCond %{HTTP_HOST} ^124.173.133.154 [NC]
- RewriteRule com(.*)$ http://www.phpfensi.com$1 [L,R=301]
- RewriteCond %{HTTP_HOST} ^124.173.133.154 [NC]
- RewriteRule (.*)$ http://www.phpfensi.com/news/$1 [L,R=301]
# 修改以下语句中的 /discuz 为你的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 / RewriteBase /
# Rewrite 系统规则请勿修改
- RewriteCond %{HTTP_HOST} !^www.phpfensi.com$ [NC]
- RewriteRule ^(.*)$ http://www.phpfensi.com/$1 [L,R=301]
- RewriteRule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
- RewriteRule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
- RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3D$3&page=$2
- RewriteRule ^space-(username|uid)-(.+).html$ space.php?$1=$2
- RewriteRule ^tag-(.+).html$ tag.php?name=$1
[NC]:no case的缩写。意思是忽略大小写,a-z和A-Z是没有差别的。
[NC,OR]:OR=AND。意思是此句要紧接着下一句语法。
[R=301,L]:R=301:redirect的缩写。意思是用301永久转向(当网址在上述名单内,就自动转向至你指定的网址);L:Last的缩写,意思是最后一句了。
Tags: htaccess 重定向 教程
相关文章
- ·Apache中.Htaccess文件的功能写法(2013-11-22)
- ·如何让apache支持.htaccess并设置404错误页(2013-11-22)
- ·apache教程:.htaccess用法(2013-11-22)
- ·.htaccess图片防盗链(2013-11-23)
- ·apache .htaccess Zend Framework rewrite规则(2013-11-23)
- ·Apache如何增加.htaccess文件增加用户认证(2013-11-23)
- ·apache .htaccess 保护方法(2013-11-23)
- ·apache 与htaccess 301重定向代码(2013-11-23)
- ·apache中的.htaccess与配置apache支持.htaccess方法(2013-11-23)
- ·利用.htaccess实现伪静态方法(2013-11-23)
- ·apache和.htaccess设置404错误页面方法(2013-11-24)
- ·Apache支持.htaccess配置方法(2013-11-24)
- ·.htaccess的基本用法与介绍(2013-11-24)
- ·Apache启用Mod Rewrite和.htaccess方法(2013-11-24)
- ·Apache .htaccess文件功能用法介绍(2013-11-25)
- ·.htaccess的基本作用及相关语法介绍(2013-11-25)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)