全球主机交流论坛

标题: 求个htaccess301重定向 [打印本页]

作者: COOCOO    时间: 2012-7-29 09:39
标题: 求个htaccess301重定向
www.xxx.com/xxx.html
重定向到这种形式:
www.xxx.com/xxx
怎么写,非常感谢。
作者: 风云主机    时间: 2012-7-29 09:40
有发这帖子的时间你百度下已经找到了
作者: COOCOO    时间: 2012-7-29 09:40
风云主机 发表于 2012-7-29 09:40
有发这帖子的时间你百度下已经找到了


从昨天就开始百度了,没找到,没明白怎么写规则。。。
作者: iyuheng    时间: 2012-7-29 09:44
  1. 5.重定向domain.com/file/file.php 到 otherdomain.com/otherfile/other.php

  2. RewriteCond %{HTTP_HOST} ^www.domain.com$
  3. RewriteRule ^file/file.php$ http://www.otherdomain.com/otherfile/other.php [R=301,L]
复制代码
参考这个
作者: lazyzhu    时间: 2012-7-29 09:45
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^(.+)\.html$
RewriteRule ^(.+)\.html$ $1 [R=301,L]
</IfModule>
作者: COOCOO    时间: 2012-7-29 09:47
iyuheng 发表于 2012-7-29 09:44
参考这个

多谢。。看看
作者: COOCOO    时间: 2012-7-29 09:51
lazyzhu 发表于 2012-7-29 09:45
RewriteEngine On
RewriteCond %{REQUEST_URI} ^(.+)\.html$
RewriteRule ^(.+)\.html$ $1 [R=301,L]

非常感谢,就是这个





欢迎光临 全球主机交流论坛 (https://hostloc.9hanju.com/) Powered by Discuz! X3.4