我正在寻找一个朋友的网站,该网站建于5年多以前,而且非常陈旧。网址为http://www.crystalvine.com
网站的结构是有一个index.htmh和一个http://www.crystalvine.com/home.html
我想要做的是将/home.html的301重定向放到index.html
并将代码从home.html移至index.html
我试着这样做:
# THE TWO LINES BELOW WERE ADDED BY WEB.COM SO THAT YOUR SITE USES PHP4 INSTEAD OF PHP5
AddHandler php4-script .php
Action php4-script /system-cgi/php4
Redirect 301 /home.html http://www.crystalvine.com/index.html
但由于某种原因,它无法正常工作。
301重定向是做什么的?
谢谢!
答案 0 :(得分:1)
将其更改为
Redirect 301 /home\.html http://www.crystalvine.com/index.html
或尝试以下
RewriteEngine On
RewriteBase /
RewriteRule ^home\.html$ http://www.crystalvine.com/index.html [NC,L,R=301]