301重定向,RedirectMatch permanent/301
[ 2006/06/05 01:55 | by 极品蜗牛 ]
301重定向在.htaccess中的写法是:
另外,410永久移除的写法是:
RedirectMatch permanent /htmpage.* http://www.chong4.cn/index.html
或RedirectMatch 301 /htmpage.* http://www.chong4.cn/index.html
效果是所有以/htmpage开头的网址(比如/htmpage/index.html、/htmpage.html)重新定向到http://www.chong4.cn/index.htmlRedirect permanent /fushi/ http://www.chong4.cn/fushi/
效果是所有fushi目录下的网址重新定向到http://www.chong4.cn/fushi/目录下(比如/fushi/index.html会重新定向到http://www.chong4.cn/fushi/index.html)另外,410永久移除的写法是:
RedirectMatch gone /htmpage.*
详细介绍看这里。